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

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7264 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-09-16 23:57:15 +00:00
parent 4397dc1ce7
commit dd4a52058c
1 changed files with 3 additions and 3 deletions

View File

@ -3,14 +3,14 @@ api.array :versions, api_meta(:total_count => @versions.size) do
api.version do
api.id version.id
api.project(:id => version.project_id, :name => version.project.name) unless version.project.nil?
api.name version.name
api.description version.description
api.status version.status
api.due_date version.effective_date
render_api_custom_values version.custom_field_values, api
api.created_on version.created_on
api.updated_on version.updated_on
end