summaryrefslogtreecommitdiff
path: root/app/graphql/types/custom_emoji_type.rb
blob: f7d1a7800bca25cb81da6069439a8c16364ea089 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 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::STRING_TYPE,
          null: false,
          description: 'The name of the emoji'

    field :url, GraphQL::STRING_TYPE,
          null: false,
          method: :file,
          description: 'The link to file of the emoji'

    field :external, GraphQL::BOOLEAN_TYPE,
          null: false,
          description: 'Whether the emoji is an external link'
  end
end