parsley/app/views/logs/index.json.jbuilder

16 lines
328 B
Plaintext
Raw Normal View History

2018-04-13 10:25:18 -05:00
2020-08-06 20:26:45 -05:00
json.cache_root!(@logs, version: @logs.cache_version) do
2018-04-13 10:25:18 -05:00
json.extract! @logs, :total_count, :total_pages, :current_page
json.page_size @logs.limit_value
json.logs @logs do |l|
json.extract! l, :id, :date, :rating, :notes
json.recipe do
json.id l.recipe.id
json.name l.recipe.name
end
end
end