2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
class UserBasic < UserSafe
|
2023-01-13 00:05:48 +05:30
|
|
|
expose :state, documentation: { type: 'string', example: 'active' }
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2023-01-13 00:05:48 +05:30
|
|
|
expose :avatar_url, documentation: { type: 'string', example: 'https://gravatar.com/avatar/1' } do |user, options|
|
2020-03-13 15:44:24 +05:30
|
|
|
user.avatar_url(only_path: false)
|
|
|
|
end
|
|
|
|
|
2023-01-13 00:05:48 +05:30
|
|
|
expose(
|
|
|
|
:avatar_path,
|
|
|
|
documentation: {
|
|
|
|
type: 'string',
|
|
|
|
example: '/user/avatar/28/The-Big-Lebowski-400-400.png'
|
|
|
|
},
|
|
|
|
if: ->(user, options) { options.fetch(:only_path, false) && user.avatar_path }
|
|
|
|
)
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2023-01-13 00:05:48 +05:30
|
|
|
expose :custom_attributes, using: 'API::Entities::CustomAttribute', if: :with_custom_attributes,
|
|
|
|
documentation: { is_array: true }
|
|
|
|
|
|
|
|
expose :web_url, documentation: { type: 'string', example: 'https://gitlab.example.com/root' } do |user, options|
|
2020-03-13 15:44:24 +05:30
|
|
|
Gitlab::Routing.url_helpers.user_url(user)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-05-24 23:13:21 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
API::Entities::UserBasic.prepend_mod_with('API::Entities::UserBasic')
|