13 lines
271 B
Ruby
13 lines
271 B
Ruby
|
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
|