2013-06-28 13:55:34 -04:00
|
|
|
class TopicViewWordpressSerializer < ApplicationSerializer
|
|
|
|
|
|
|
|
# These attributes will be delegated to the topic
|
|
|
|
attributes :id,
|
|
|
|
:posts_count,
|
|
|
|
:filtered_posts_count,
|
|
|
|
:posts
|
|
|
|
|
2014-05-29 17:19:49 -04:00
|
|
|
has_many :participants, serializer: UserWordpressSerializer, embed: :objects
|
|
|
|
has_many :posts, serializer: PostWordpressSerializer, embed: :objects
|
2013-06-28 13:55:34 -04:00
|
|
|
|
|
|
|
def id
|
|
|
|
object.topic.id
|
|
|
|
end
|
|
|
|
|
|
|
|
def posts_count
|
|
|
|
object.topic.posts_count
|
|
|
|
end
|
|
|
|
|
|
|
|
def filtered_posts_count
|
2013-06-20 17:20:08 -04:00
|
|
|
object.filtered_post_ids.size
|
2013-06-28 13:55:34 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def participants
|
|
|
|
object.participants.values
|
|
|
|
end
|
|
|
|
|
|
|
|
def posts
|
|
|
|
object.posts
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|