Welcome to mirror list, hosted at ThFree Co, Russian Federation.

custom_emoji.rb « permission_types « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 61ff85f665d34f27db65946722b459854ae9ff64 (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, :delete_custom_emoji
    end
  end
end