2013-02-05 14:16:51 -05:00
|
|
|
class NotificationSerializer < ApplicationSerializer
|
|
|
|
|
2013-02-07 10:45:24 -05:00
|
|
|
attributes :notification_type,
|
|
|
|
:read,
|
|
|
|
:created_at,
|
2013-02-05 14:16:51 -05:00
|
|
|
:post_number,
|
|
|
|
:topic_id,
|
|
|
|
:slug,
|
|
|
|
:data
|
|
|
|
|
2013-02-07 10:45:24 -05:00
|
|
|
def slug
|
2013-02-05 14:16:51 -05:00
|
|
|
Slug.for(object.topic.title) if object.topic.present?
|
|
|
|
end
|
|
|
|
|
|
|
|
def data
|
|
|
|
object.data_hash
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|