FEATURE: Add category_id to TopicViewWordpressSerializer (#10372)
This commit is contained in:
parent
8850f51fd0
commit
f78792c779
|
@ -4,6 +4,7 @@ class TopicViewWordpressSerializer < ApplicationSerializer
|
|||
|
||||
# These attributes will be delegated to the topic
|
||||
attributes :id,
|
||||
:category_id,
|
||||
:posts_count,
|
||||
:filtered_posts_count,
|
||||
:posts
|
||||
|
@ -15,6 +16,10 @@ class TopicViewWordpressSerializer < ApplicationSerializer
|
|||
object.topic.id
|
||||
end
|
||||
|
||||
def category_id
|
||||
object.topic.category_id
|
||||
end
|
||||
|
||||
def posts_count
|
||||
object.topic.posts_count
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue