2021-02-22 17:27:13 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Admin
|
|
|
|
class UserEntity < API::Entities::UserSafe
|
|
|
|
include RequestAwareEntity
|
|
|
|
include UsersHelper
|
|
|
|
include UserActionsHelper
|
|
|
|
|
|
|
|
expose :created_at
|
|
|
|
expose :email
|
|
|
|
expose :last_activity_on
|
|
|
|
expose :avatar_url
|
2021-03-11 19:13:27 +05:30
|
|
|
expose :note
|
2021-02-22 17:27:13 +05:30
|
|
|
expose :badges do |user|
|
|
|
|
user_badges_in_admin_section(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
expose :projects_count do |user|
|
|
|
|
user.authorized_projects.length
|
|
|
|
end
|
|
|
|
|
|
|
|
expose :actions do |user|
|
|
|
|
admin_actions(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def current_user
|
|
|
|
options[:current_user]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|