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)
|