4 lines
136 B
Ruby
4 lines
136 B
Ruby
json.array!(@articles) do |article|
|
|
json.extract! article, :id, :title, :body_html
|
|
json.url article_url(article, format: :json)
|
|
end
|