debian-mirror-gitlab/app/graphql/types/notes/position_type_enum.rb
2019-09-04 21:01:54 +05:30

14 lines
249 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'
value 'image'
end
end
end