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

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

module Types
  module Boards
    class AssigneeWildcardIdEnum < BaseEnum
      graphql_name 'AssigneeWildcardId'
      description 'Assignee ID wildcard values'

      value 'NONE', 'No assignee is assigned.'
      value 'ANY', 'An assignee is assigned.'
    end
  end
end