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

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

module Types
  class TodoTargetEnum < BaseEnum
    value 'Issue'
    value 'MergeRequest'
    value 'Epic'
  end
end