mirror of https://github.com/fspc/BikeShed-1.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
313 B
15 lines
313 B
json.task_lists [@task_list] do |tl|
|
|
json.array! tl
|
|
json.links do
|
|
json.bike do
|
|
json.href api_bike_path(tl.item)
|
|
json.id tl.item_id
|
|
end
|
|
json.tasks tl.tasks do |task|
|
|
json.id task.id
|
|
json.done task.done
|
|
json.notes task.notes
|
|
json.task task.task
|
|
end
|
|
end
|
|
end
|
|
|