mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
15 lines
241 B
Ruby
15 lines
241 B
Ruby
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
|