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

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

module Types
  class MilestoneStateEnum < BaseEnum
    value 'active'
    value 'closed'
  end
end