2013-02-05 13:16:51 -06:00
|
|
|
class NotificationSerializer < ApplicationSerializer
|
|
|
|
|
2013-02-07 09:45:24 -06:00
|
|
|
attributes :notification_type,
|
|
|
|
:read,
|
|
|
|
:created_at,
|
2013-02-05 13:16:51 -06:00
|
|
|
:post_number,
|
|
|
|
:topic_id,
|
|
|
|
:slug,
|
2014-09-08 10:11:56 -05:00
|
|
|
:data,
|
|
|
|
:is_warning
|
2013-02-05 13:16:51 -06:00
|
|
|
|
2013-02-07 09:45:24 -06:00
|
|
|
def slug
|
2013-02-05 13:16:51 -06:00
|
|
|
Slug.for(object.topic.title) if object.topic.present?
|
|
|
|
end
|
|
|
|
|
2014-09-08 10:11:56 -05:00
|
|
|
def is_warning
|
2014-09-08 12:23:40 -05:00
|
|
|
object.topic.present? && object.topic.subtype == TopicSubtype.moderator_warning
|
2014-09-08 10:11:56 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def include_is_warning?
|
|
|
|
is_warning
|
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
def data
|
|
|
|
object.data_hash
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|