This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/serializers/topic_embed_serializer.rb
2015-09-16 03:22:24 +00:00

16 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