mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 00:36:18 +08:00
12 lines
298 B
Ruby
12 lines
298 B
Ruby
class SuggestedTopicSerializer < BasicTopicSerializer
|
|
|
|
attributes :archetype, :slug, :like_count, :views, :last_post_age
|
|
has_one :category, embed: :objects
|
|
|
|
def last_post_age
|
|
return nil if object.last_posted_at.blank?
|
|
AgeWords.age_words(Time.now - object.last_posted_at)
|
|
end
|
|
|
|
end
|