2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-12-22 11:08:35 -05:00
|
|
|
class WebHookTopicViewSerializer < TopicViewSerializer
|
2023-01-09 07:20:10 -05:00
|
|
|
attributes :created_by, :last_poster
|
2016-12-22 11:08:35 -05:00
|
|
|
|
2023-01-09 07:20:10 -05:00
|
|
|
%i[
|
2018-02-26 22:28:31 -05:00
|
|
|
post_stream
|
|
|
|
timeline_lookup
|
|
|
|
pm_with_non_human_user
|
|
|
|
draft
|
|
|
|
draft_key
|
|
|
|
draft_sequence
|
|
|
|
message_bus_last_id
|
2018-04-10 07:08:48 -04:00
|
|
|
suggested_topics
|
2018-05-20 22:28:12 -04:00
|
|
|
has_summary
|
|
|
|
actions_summary
|
|
|
|
current_post_number
|
|
|
|
chunk_size
|
|
|
|
topic_timer
|
|
|
|
details
|
2019-10-22 10:52:37 -04:00
|
|
|
image_url
|
2020-10-16 15:24:38 -04:00
|
|
|
slow_mode_seconds
|
2021-05-21 10:13:14 -04:00
|
|
|
slow_mode_enabled_until
|
2021-09-20 18:45:47 -04:00
|
|
|
bookmarks
|
2023-01-09 07:20:10 -05:00
|
|
|
].each { |attr| define_method("include_#{attr}?") { false } }
|
2018-05-20 22:28:12 -04:00
|
|
|
|
2019-08-27 08:09:00 -04:00
|
|
|
def include_show_read_indicator?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2018-05-20 22:28:12 -04:00
|
|
|
def created_by
|
|
|
|
BasicUserSerializer.new(object.topic.user, scope: scope, root: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
def last_poster
|
|
|
|
BasicUserSerializer.new(object.topic.last_poster, scope: scope, root: false)
|
|
|
|
end
|
2016-12-22 11:08:35 -05:00
|
|
|
end
|