mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 18:30:26 -06:00
23 lines
555 B
Ruby
23 lines
555 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class TopicTrackingStateItemSerializer < ApplicationSerializer
|
||
|
attributes :topic_id,
|
||
|
:highest_post_number,
|
||
|
:last_read_post_number,
|
||
|
:created_at,
|
||
|
:category_id,
|
||
|
:notification_level,
|
||
|
:created_in_new_period,
|
||
|
:treat_as_new_topic_start_date,
|
||
|
:tags
|
||
|
|
||
|
def created_in_new_period
|
||
|
return true if !scope
|
||
|
object.created_at >= treat_as_new_topic_start_date
|
||
|
end
|
||
|
|
||
|
def include_tags?
|
||
|
object.respond_to?(:tags)
|
||
|
end
|
||
|
end
|