2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/app/serializers/screened_email_serializer.rb

19 lines
359 B
Ruby
Raw Normal View History

class ScreenedEmailSerializer < ApplicationSerializer
2013-08-01 21:30:13 -04:00
attributes :email,
:action,
:match_count,
:last_match_at,
:created_at,
:ip_address,
:id
2013-08-01 21:30:13 -04:00
def action
ScreenedEmail.actions.key(object.action_type).to_s
2013-08-01 21:30:13 -04:00
end
def ip_address
object.ip_address.try(:to_s)
end
2013-08-01 21:30:13 -04:00
end