2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
class NotificationSerializer < ApplicationSerializer
|
2015-05-05 12:44:19 -05:00
|
|
|
attributes :id,
|
2019-10-21 17:24:41 -05:00
|
|
|
:user_id,
|
2020-07-13 13:07:39 -05:00
|
|
|
:external_id,
|
2015-05-05 12:44:19 -05:00
|
|
|
:notification_type,
|
2013-02-07 09:45:24 -06:00
|
|
|
:read,
|
2021-05-31 01:27:13 -05:00
|
|
|
:high_priority,
|
2013-02-07 09:45:24 -06:00
|
|
|
:created_at,
|
2013-02-05 13:16:51 -06:00
|
|
|
:post_number,
|
|
|
|
:topic_id,
|
2017-05-15 14:38:21 -05:00
|
|
|
:fancy_title,
|
2013-02-05 13:16:51 -06:00
|
|
|
:slug,
|
2014-09-08 10:11:56 -05:00
|
|
|
:data,
|
2023-12-07 11:30:44 -06:00
|
|
|
:is_warning,
|
|
|
|
:acting_user_avatar_template
|
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
|
|
|
|
|
2017-05-15 14:38:21 -05:00
|
|
|
def include_fancy_title?
|
|
|
|
object.topic&.fancy_title
|
|
|
|
end
|
|
|
|
|
|
|
|
def fancy_title
|
|
|
|
object.topic.fancy_title
|
|
|
|
end
|
|
|
|
|
2014-09-08 10:11:56 -05:00
|
|
|
def include_is_warning?
|
|
|
|
is_warning
|
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
def data
|
|
|
|
object.data_hash
|
|
|
|
end
|
|
|
|
|
2020-07-13 13:07:39 -05:00
|
|
|
def external_id
|
|
|
|
object.user&.single_sign_on_record&.external_id
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_external_id?
|
2021-02-08 04:04:33 -06:00
|
|
|
SiteSetting.enable_discourse_connect
|
2020-07-13 13:07:39 -05:00
|
|
|
end
|
2023-12-07 11:30:44 -06:00
|
|
|
|
|
|
|
def acting_user_avatar_template
|
|
|
|
object.acting_user.avatar_template_url
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_acting_user_avatar_template?
|
|
|
|
object.acting_user.present?
|
|
|
|
end
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|