debian-mirror-gitlab/app/graphql/types/todo_state_enum.rb
2021-04-17 20:07:23 +05:30

9 lines
221 B
Ruby

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