2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-05-05 21:00:31 -04:00
|
|
|
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
|