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

group.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: fbd1140babceaeb6b3917fa7c0fa2fd3edcdde0f (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Types
  module PermissionTypes
    class Group < BasePermissionType
      graphql_name 'GroupPermissions'

      abilities :read_group, :create_projects, :create_custom_emoji
    end
  end
end