gitlab-org--gitlab-foss/app/graphql/types/user_type.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
272 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Types
class UserType < ::Types::BaseObject
graphql_name 'UserCore'
description 'Core represention of a GitLab user.'
implements ::Types::UserInterface
authorize :read_user
present_using UserPresenter
end
end