jbuilder
jbuilder copied to clipboard
Render files
Hello
I render partial, and I want to get rid of it.

I tried using:
json.array! @posts, partial: 'posts/post', as: :post
json.partial! 'posts/post', collection: @posts, as: :post
json.partial! partial: 'posts/post', collection: @posts, as: :post
json.comments @post.comments, partial: 'comments/comment', as: :comment
But all is useless How to be?
P.S. my code
json.data do
json.array! @manager.resources, partial: 'workers/orders/order', as: :order
end