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