Mercurial > hg > soundsoftware-site
view .svn/pristine/ad/ade99a9bf4e238360d49494f7724d4d3ffbb612e.svn-base @ 1625:808a40a7cac7 live
Have a go at fixing #570 Can't delete downloadable file from version in project with no issue tracker
author | Chris Cannam |
---|---|
date | Thu, 07 Feb 2019 13:48:00 +0000 |
parents | dffacf8a6908 |
children |
line wrap: on
line source
api.project do api.id @project.id api.name @project.name api.identifier @project.identifier api.description @project.description api.homepage @project.homepage api.parent(:id => @project.parent.id, :name => @project.parent.name) if @project.parent && @project.parent.visible? api.status @project.status render_api_custom_values @project.visible_custom_field_values, api api.created_on @project.created_on api.updated_on @project.updated_on api.array :trackers do @project.trackers.each do |tracker| api.tracker(:id => tracker.id, :name => tracker.name) end end if include_in_api_response?('trackers') api.array :issue_categories do @project.issue_categories.each do |category| api.issue_category(:id => category.id, :name => category.name) end end if include_in_api_response?('issue_categories') end