summaryrefslogtreecommitdiff
path: root/app/graphql/types/group_invitation_type.rb
blob: 06a997bbc144a41ef270be922eb6626da2e4d74f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

module Types
  class GroupInvitationType < BaseObject
    expose_permissions Types::PermissionTypes::Group
    authorize :read_group

    implements InvitationInterface

    graphql_name 'GroupInvitation'
    description 'Represents a Group Invitation'

    field :group, Types::GroupType, null: true,
          description: 'Group that a User is invited to.'

    def group
      Gitlab::Graphql::Loaders::BatchModelLoader.new(Group, object.source_id).find
    end
  end
end