debian-mirror-gitlab/app/graphql/types/notes/position_type_enum.rb
2021-06-08 01:23:25 +05:30

13 lines
304 B
Ruby

# frozen_string_literal: true
module Types
module Notes
class PositionTypeEnum < BaseEnum
graphql_name 'DiffPositionType'
description 'Type of file the position refers to'
value 'text', description: "A text file."
value 'image', description: "An image."
end
end
end