remove trailing white-spaces from app/views/issues/index.api.rsb

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7258 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-09-16 15:17:44 +00:00
parent aec51a36bd
commit 0b447797d3
1 changed files with 4 additions and 4 deletions

View File

@ -11,19 +11,19 @@ api.array :issues, api_meta(:total_count => @issue_count, :offset => @offset, :l
api.category(:id => issue.category_id, :name => issue.category.name) unless issue.category.nil?
api.fixed_version(:id => issue.fixed_version_id, :name => issue.fixed_version.name) unless issue.fixed_version.nil?
api.parent(:id => issue.parent_id) unless issue.parent.nil?
api.subject issue.subject
api.description issue.description
api.start_date issue.start_date
api.due_date issue.due_date
api.done_ratio issue.done_ratio
api.estimated_hours issue.estimated_hours
render_api_custom_values issue.custom_field_values, api
api.created_on issue.created_on
api.updated_on issue.updated_on
api.array :relations do
issue.relations.each do |relation|
api.relation(:id => relation.id, :issue_id => relation.issue_from_id, :issue_to_id => relation.issue_to_id, :relation_type => relation.relation_type, :delay => relation.delay)