Welcome to mirror list, hosted at ThFree Co, Russian Federation.

todo_action_enum.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0e53883847449f3c7558949b17e1e335f4eb08c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Types
  class TodoActionEnum < BaseEnum
    value 'assigned', value: 1
    value 'mentioned', value: 2
    value 'build_failed', value: 3
    value 'marked', value: 4
    value 'approval_required', value: 5
    value 'unmergeable', value: 6
    value 'directly_addressed', value: 7
  end
end