feat: CRUD operation for associated articles to current article (#4912)
This commit is contained in:
@@ -11,6 +11,7 @@ if article.portal.present?
|
||||
json.partial! 'api/v1/accounts/portals/portal.json.jbuilder', portal: article.portal
|
||||
end
|
||||
end
|
||||
|
||||
json.views article.views
|
||||
|
||||
if article.author.present?
|
||||
@@ -18,3 +19,11 @@ if article.author.present?
|
||||
json.partial! 'api/v1/models/agent.json.jbuilder', resource: article.author
|
||||
end
|
||||
end
|
||||
|
||||
json.associated_articles do
|
||||
if article.associated_articles.any?
|
||||
json.array! article.associated_articles.each do |associated_article|
|
||||
json.partial! 'api/v1/accounts/articles/associated_article.json.jbuilder', article: associated_article
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user