remove trailing white-spaces from app/views/projects/show.api.rsb

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7307 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-09-17 08:05:57 +00:00
parent 307dd7d73a
commit 71f49c723a
1 changed files with 3 additions and 3 deletions

View File

@ -5,12 +5,12 @@ api.project do
api.description @project.description
api.homepage @project.homepage
api.parent(:id => @project.parent.id, :name => @project.parent.name) if @project.parent && @project.parent.visible?
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)