2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-11-26 12:56:12 -06:00
|
|
|
class AdminUserSerializer < AdminUserListSerializer
|
2015-09-19 07:13:28 -05:00
|
|
|
attributes :name,
|
|
|
|
:associated_accounts,
|
2013-05-07 20:58:34 -05:00
|
|
|
:can_send_activation_email,
|
|
|
|
:can_activate,
|
2015-01-06 10:06:05 -06:00
|
|
|
:can_deactivate,
|
2019-04-09 10:07:04 -05:00
|
|
|
:can_approve,
|
2014-11-26 12:56:12 -06:00
|
|
|
:ip_address,
|
2017-07-04 03:29:05 -05:00
|
|
|
:registration_ip_address
|
2013-10-03 22:28:49 -05:00
|
|
|
|
2014-08-22 19:34:48 -05:00
|
|
|
has_one :single_sign_on_record, serializer: SingleSignOnRecordSerializer, embed: :objects
|
|
|
|
|
2019-04-09 10:07:04 -05:00
|
|
|
def can_approve
|
2019-04-16 13:42:47 -05:00
|
|
|
scope.can_approve?(object)
|
2019-04-09 10:07:04 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def include_can_approve?
|
|
|
|
SiteSetting.must_approve_users
|
|
|
|
end
|
|
|
|
|
2013-05-07 20:58:34 -05:00
|
|
|
def can_send_activation_email
|
|
|
|
scope.can_send_activation_email?(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def can_activate
|
|
|
|
scope.can_activate?(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def can_deactivate
|
|
|
|
scope.can_deactivate?(object)
|
|
|
|
end
|
|
|
|
|
2013-11-05 14:00:47 -06:00
|
|
|
def ip_address
|
|
|
|
object.ip_address.try(:to_s)
|
|
|
|
end
|
|
|
|
|
2014-04-29 13:37:56 -05:00
|
|
|
def registration_ip_address
|
|
|
|
object.registration_ip_address.try(:to_s)
|
|
|
|
end
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|