debian-mirror-gitlab/app/graphql/types/todo_state_enum.rb
2021-11-11 11:23:49 +05:30

8 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