fix: DEPRECATION WARNING: Rendering actions with '.' in the name is deprecated (#5560)

fixes the warning: Rendering actions with '.' in the name is deprecated
This commit is contained in:
Geophilus Durairaj
2022-10-06 05:54:34 +05:30
committed by GitHub
parent cd4c1ef27e
commit bd445216e9
127 changed files with 145 additions and 145 deletions

View File

@@ -1 +1 @@
json.partial! 'public/api/v1/models/csat_survey.json.jbuilder', resource: @message
json.partial! 'public/api/v1/models/csat_survey', formats: [:json], resource: @message

View File

@@ -1 +1 @@
json.partial! 'public/api/v1/models/csat_survey.json.jbuilder', resource: @message
json.partial! 'public/api/v1/models/csat_survey', formats: [:json], resource: @message

View File

@@ -1,3 +1,3 @@
json.source_id @contact_inbox.source_id
json.pubsub_token @contact_inbox.pubsub_token
json.partial! 'public/api/v1/models/contact.json.jbuilder', resource: @contact_inbox.contact
json.partial! 'public/api/v1/models/contact', resource: @contact_inbox.contact, formats: [:json]

View File

@@ -1,3 +1,3 @@
json.source_id @contact_inbox.source_id
json.pubsub_token @contact_inbox.pubsub_token
json.partial! 'public/api/v1/models/contact.json.jbuilder', resource: @contact_inbox.contact
json.partial! 'public/api/v1/models/contact', formats: [:json], resource: @contact_inbox.contact

View File

@@ -1,3 +1,3 @@
json.source_id @contact_inbox.source_id
json.pubsub_token @contact_inbox.pubsub_token
json.partial! 'public/api/v1/models/contact.json.jbuilder', resource: @contact_inbox.contact
json.partial! 'public/api/v1/models/contact', formats: [:json], resource: @contact_inbox.contact

View File

@@ -1 +1 @@
json.partial! 'public/api/v1/models/conversation.json.jbuilder', resource: @conversation
json.partial! 'public/api/v1/models/conversation', formats: [:json], resource: @conversation

View File

@@ -1,3 +1,3 @@
json.array! @conversations do |conversation|
json.partial! 'public/api/v1/models/conversation.json.jbuilder', resource: conversation
json.partial! 'public/api/v1/models/conversation', formats: [:json], resource: conversation
end

View File

@@ -1 +1 @@
json.partial! 'public/api/v1/models/message.json.jbuilder', resource: @message
json.partial! 'public/api/v1/models/message', formats: [:json], resource: @message

View File

@@ -1,3 +1,3 @@
json.array! @messages do |message|
json.partial! 'public/api/v1/models/message.json.jbuilder', resource: message
json.partial! 'public/api/v1/models/message', formats: [:json], resource: message
end

View File

@@ -1 +1 @@
json.partial! 'public/api/v1/models/message.json.jbuilder', resource: @message
json.partial! 'public/api/v1/models/message', formats: [:json], resource: @message

View File

@@ -9,7 +9,7 @@ json.last_updated_at article.updated_at
if article.portal.present?
json.portal do
json.partial! 'api/v1/accounts/portals/portal.json.jbuilder', portal: article.portal
json.partial! 'api/v1/accounts/portals/portal', formats: [:json], portal: article.portal
end
end
@@ -17,14 +17,14 @@ json.views article.views
if article.author.present?
json.author do
json.partial! 'api/v1/models/agent.json.jbuilder', resource: article.author
json.partial! 'api/v1/models/agent', formats: [:json], 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
json.partial! 'api/v1/accounts/articles/associated_article', formats: [:json], article: associated_article
end
end
end

View File

@@ -10,6 +10,6 @@ json.views article.views
if article.author.present?
json.author do
json.partial! 'api/v1/models/agent.json.jbuilder', resource: article.author
json.partial! 'api/v1/models/agent', formats: [:json], resource: article.author
end
end

View File

@@ -5,7 +5,7 @@ json.status resource.status
json.agent_last_seen_at resource.agent_last_seen_at.to_i
json.messages do
json.array! resource.messages do |message|
json.partial! 'public/api/v1/models/message.json.jbuilder', resource: message
json.partial! 'public/api/v1/models/message', formats: [:json], resource: message
end
end
json.contact resource.contact

View File

@@ -8,7 +8,7 @@ json.slug portal.slug
json.categories do
if portal.categories.any?
json.array! portal.categories.each do |category|
json.partial! 'public/api/v1/models/category.json.jbuilder', category: category
json.partial! 'public/api/v1/models/category', formats: [:json], category: category
end
end
end

View File

@@ -1 +1 @@
json.partial! 'public/api/v1/models/article.json.jbuilder', article: @article
json.partial! 'public/api/v1/models/article', formats: [:json], article: @article

View File

@@ -1 +1 @@
json.partial! 'public/api/v1/models/category.json.jbuilder', category: @category
json.partial! 'public/api/v1/models/category', formats: [:json], category: @category

View File

@@ -1 +1 @@
json.partial! 'public/api/v1/models/portal.json.jbuilder', portal: @portal
json.partial! 'public/api/v1/models/portal', formats: [:json], portal: @portal