summaryrefslogtreecommitdiff
path: root/app/graphql/types/permission_types/group.rb
blob: 29833993ce67ef520219e7260ada078f9760ac54 (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
    end
  end
end