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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
213 B
Ruby
Raw Normal View History

# 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