summaryrefslogtreecommitdiff
path: root/app/graphql/types/permission_types/custom_emoji.rb
blob: 0b2e7da44f54b57652d632c356679137ec642e27 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Types
  module PermissionTypes
    class CustomEmoji < BasePermissionType
      graphql_name 'CustomEmojiPermissions'

      abilities :create_custom_emoji, :read_custom_emoji
    end
  end
end