Files
redmine/redmine_checklists/app/views/checklists/index.api.rsb
T
pztrn e436d0e8d8
ci/woodpecker/manual/test_build Pipeline failed
Initial commit
2026-06-07 17:56:08 +05:00

16 lines
461 B
Plaintext

api.array :checklists, api_meta(:total_count => @checklists.size) do
@checklists.each do |checklist|
api.checklist do
api.id checklist.id
api.issue_id checklist.issue_id
api.subject checklist.subject
api.is_done checklist.is_done
api.position checklist.position
api.is_section checklist.is_section
api.created_at checklist.created_at
api.updated_at checklist.updated_at
end
end
end