##// END OF EJS Templates
remove trailing white-spaces from app/views/issues/show.api.rsb...
remove trailing white-spaces from app/views/issues/show.api.rsb git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7255 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r6084:3c2ebd7aa2bd
r7135:6d6a0c0374f4
Show More
index.api.rsb
16 lines | 607 B | text/plain | TextLexer
api.array :projects, api_meta(:total_count => @project_count, :offset => @offset, :limit => @limit) do
@projects.each do |project|
api.project do
api.id project.id
api.name project.name
api.identifier project.identifier
api.description project.description
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
end
end
end