2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
class NotificationSerializer < ApplicationSerializer
|
|
|
|
|
2015-05-05 13:44:19 -04:00
|
|
|
attributes :id,
|
2019-10-21 18:24:41 -04:00
|
|
|
:user_id,
|
2015-05-05 13:44:19 -04:00
|
|
|
:notification_type,
|
2013-02-07 10:45:24 -05:00
|
|
|
:read,
|
|
|
|
:created_at,
|
2013-02-05 14:16:51 -05:00
|
|
|
:post_number,
|
|
|
|
:topic_id,
|
2017-05-15 15:38:21 -04:00
|
|
|
:fancy_title,
|
2013-02-05 14:16:51 -05:00
|
|
|
:slug,
|
2014-09-08 11:11:56 -04:00
|
|
|
:data,
|
|
|
|
:is_warning
|
2013-02-05 14:16:51 -05:00
|
|
|
|
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
|
|
|
|
|
2014-09-08 11:11:56 -04:00
|
|
|
def is_warning
|
2014-09-08 13:23:40 -04:00
|
|
|
object.topic.present? && object.topic.subtype == TopicSubtype.moderator_warning
|
2014-09-08 11:11:56 -04:00
|
|
|
end
|
|
|
|
|
2017-05-15 15:38:21 -04:00
|
|
|
def include_fancy_title?
|
|
|
|
object.topic&.fancy_title
|
|
|
|
end
|
|
|
|
|
|
|
|
def fancy_title
|
|
|
|
object.topic.fancy_title
|
|
|
|
end
|
|
|
|
|
2014-09-08 11:11:56 -04:00
|
|
|
def include_is_warning?
|
|
|
|
is_warning
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def data
|
|
|
|
object.data_hash
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|