2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-10-03 17:21:20 +08:00
discourse/app/serializers/admin_user_serializer.rb

64 lines
1.2 KiB
Ruby

# frozen_string_literal: true
class AdminUserSerializer < AdminUserListSerializer
attributes :name,
:associated_accounts,
:can_send_activation_email,
:can_activate,
:can_deactivate,
:can_approve,
:can_change_trust_level,
:ip_address,
:registration_ip_address,
:include_ip
has_one :single_sign_on_record, serializer: SingleSignOnRecordSerializer, embed: :objects
def can_approve
scope.can_approve?(object)
end
def include_can_approve?
SiteSetting.must_approve_users
end
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
def can_change_trust_level
scope.can_change_trust_level?(object)
end
def ip_address
object.ip_address.try(:to_s)
end
def registration_ip_address
object.registration_ip_address.try(:to_s)
end
def include_ip_address?
scope.can_see_ip?
end
def include_registration_ip_address?
scope.can_see_ip?
end
def include_can_be_deleted?
true
end
def include_ip
@options[:include_ip]
end
end