mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 22:26:26 +08:00
14 lines
289 B
Ruby
14 lines
289 B
Ruby
class ScreenedIpAddressSerializer < ApplicationSerializer
|
|
attributes :id,
|
|
:ip_address,
|
|
:action,
|
|
:match_count,
|
|
:last_match_at,
|
|
:created_at
|
|
|
|
def action
|
|
ScreenedIpAddress.actions.key(object.action_type).to_s
|
|
end
|
|
|
|
end
|