debian-mirror-gitlab/app/graphql/types/milestone_state_enum.rb

12 lines
298 B
Ruby
Raw Normal View History

2020-03-13 15:44:24 +05:30
# frozen_string_literal: true
module Types
class MilestoneStateEnum < BaseEnum
2021-03-11 19:13:27 +05:30
graphql_name 'MilestoneStateEnum'
description 'Current state of milestone'
2021-04-17 20:07:23 +05:30
value 'active', description: 'Milestone is currently active.'
value 'closed', description: 'Milestone is closed.'
2020-03-13 15:44:24 +05:30
end
end