annotate .svn/pristine/66/666908274eeea22bb621ad52cf638c67e7d01ffd.svn-base @ 1524:82fac3dcf466 redmine-2.5-integration

Fix failure to interpret Javascript when autocompleting members for project
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Thu, 11 Sep 2014 10:24:38 +0100
parents dffacf8a6908
children
rev   line source
Chris@1517 1 api.array :projects, api_meta(:total_count => @project_count, :offset => @offset, :limit => @limit) do
Chris@1517 2 @projects.each do |project|
Chris@1517 3 api.project do
Chris@1517 4 api.id project.id
Chris@1517 5 api.name project.name
Chris@1517 6 api.identifier project.identifier
Chris@1517 7 api.description project.description
Chris@1517 8 api.parent(:id => project.parent.id, :name => project.parent.name) if project.parent && project.parent.visible?
Chris@1517 9 api.status project.status
Chris@1517 10
Chris@1517 11 render_api_custom_values project.visible_custom_field_values, api
Chris@1517 12
Chris@1517 13 api.created_on project.created_on
Chris@1517 14 api.updated_on project.updated_on
Chris@1517 15 end
Chris@1517 16 end
Chris@1517 17 end