debian-mirror-gitlab/app/graphql/resolvers/users/participants_resolver.rb
2022-01-26 12:08:38 +05:30

14 lines
269 B
Ruby

# frozen_string_literal: true
module Resolvers
module Users
class ParticipantsResolver < BaseResolver
type Types::UserType.connection_type, null: true
def resolve(**args)
object.visible_participants(current_user)
end
end
end
end