debian-mirror-gitlab/app/graphql/types/custom_emoji_type.rb
2021-10-27 15:23:28 +05:30

28 lines
721 B
Ruby

# frozen_string_literal: true
module Types
class CustomEmojiType < BaseObject
graphql_name 'CustomEmoji'
description 'A custom emoji uploaded by user'
authorize :read_custom_emoji
field :id, ::Types::GlobalIDType[::CustomEmoji],
null: false,
description: 'The ID of the emoji.'
field :name, GraphQL::Types::String,
null: false,
description: 'The name of the emoji.'
field :url, GraphQL::Types::String,
null: false,
method: :file,
description: 'The link to file of the emoji.'
field :external, GraphQL::Types::Boolean,
null: false,
description: 'Whether the emoji is an external link.'
end
end