gitlab-org--gitlab-foss/app/graphql/types/todo_state_enum.rb

9 lines
213 B
Ruby

# frozen_string_literal: true
module Types
class TodoStateEnum < BaseEnum
value 'pending', description: "State of the todo is pending."
value 'done', description: "State of the todo is done."
end
end