mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:04:11 +08:00
14 lines
254 B
Ruby
14 lines
254 B
Ruby
# frozen_string_literal: true
|
|
|
|
class TopicEmbedSerializer < ApplicationSerializer
|
|
attributes :topic_id, :post_id, :topic_slug, :comment_count
|
|
|
|
def topic_slug
|
|
object.topic.slug
|
|
end
|
|
|
|
def comment_count
|
|
object.topic.posts_count - 1
|
|
end
|
|
end
|