feat: CRUD operation for associated articles to current article (#4912)

This commit is contained in:
Tejaswini Chile
2022-07-04 20:29:44 +05:30
committed by GitHub
parent 62ed9fe1b4
commit ae59d0a343
28 changed files with 422 additions and 33 deletions

View File

@@ -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

View File

@@ -0,0 +1,21 @@
json.id article.id
json.category_id article.category_id
json.title article.title
json.content article.content
json.description article.description
json.status article.status
json.account_id article.account_id
if article.portal.present?
json.portal do
json.partial! 'api/v1/accounts/portals/portal.json.jbuilder', portal: article.portal
end
end
json.views article.views
if article.author.present?
json.author do
json.partial! 'api/v1/models/agent.json.jbuilder', resource: article.author
end
end

View File

@@ -8,3 +8,11 @@ json.page_title portal.page_title
json.slug portal.slug
json.archived portal.archived
json.config portal.config
json.portal_members do
if portal.members.any?
json.array! portal.members.each do |member|
json.partial! 'api/v1/models/agent.json.jbuilder', resource: member
end
end
end

View File

@@ -0,0 +1 @@
json.partial! 'portal', portal: @portal

View File

@@ -1 +1,3 @@
json.array! @portals, partial: 'portal', as: :portal
json.payload do
json.array! @portals, partial: 'portal', as: :portal
end