discourse/app/serializers/screened_ip_address_seriali...

13 lines
271 B
Ruby
Raw Normal View History

class ScreenedIpAddressSerializer < ApplicationSerializer
attributes :ip_address,
:action,
:match_count,
:last_match_at,
:created_at
def action
ScreenedIpAddress.actions.key(object.action_type).to_s
end
end