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

user_public.rb « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eda72d2cfc6232c6353cf441442b0464bd394173 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# frozen_string_literal: true

module API
  module Entities
    class UserPublic < Entities::User
      expose :last_sign_in_at, documentation: { type: 'dateTime', example: '2015-09-03T07:24:01.670Z' }
      expose :confirmed_at, documentation: { type: 'dateTime', example: '2015-09-03T07:24:01.670Z' }
      expose :last_activity_on, documentation: { type: 'dateTime', example: '2015-09-03T07:24:01.670Z' }
      expose :email, documentation: { type: 'string', example: 'john@example.com' }
      expose :theme_id, documentation: { type: 'integer', example: 2 }
      expose :color_scheme_id, documentation: { type: 'integer', example: 1 }
      expose :projects_limit, documentation: { type: 'integer', example: 10 }
      expose :current_sign_in_at, documentation: { type: 'dateTime', example: '2015-09-03T07:24:01.670Z' }
      expose :identities, using: Entities::Identity
      expose :can_create_group?, as: :can_create_group, documentation: { type: 'boolean', example: true }
      expose :can_create_project?, as: :can_create_project, documentation: { type: 'boolean', example: true }

      expose :two_factor_enabled?, as: :two_factor_enabled, documentation: { type: 'boolean', example: true }

      expose :external

      expose :private_profile, documentation: { type: 'boolean', example: :null }
      expose :commit_email_or_default, as: :commit_email
    end
  end
end

API::Entities::UserPublic.prepend_mod_with('API::Entities::UserPublic', with_descendants: true)