This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/serializers/screened_url_serializer.rb
2013-08-22 19:04:35 -04:00

14 lines
299 B
Ruby

class ScreenedUrlSerializer < ApplicationSerializer
attributes :url,
:domain,
:action,
:match_count,
:last_match_at,
:created_at,
:ip_address
def action
ScreenedUrl.actions.key(object.action_type).to_s
end
end