##// END OF EJS Templates
test: replace "should_route" of "activities" to "assert_routing" at integration/routing_test.rb...
test: replace "should_route" of "activities" to "assert_routing" at integration/routing_test.rb shoulda 2.11.3 does not support Rails2 legacy route on Rails 3.0.11. <pre> Error: test: wikis (plural, admin setup) should route POST /projects/ladida/wiki/destroy to/from {:action=>"destroy", :id=>"ladida", :controller=>"wikis"}. (RoutingTest): NameError: uninitialized constant Routing </pre> git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8201 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7136:73d7fa96a398
r8081:0b4aed008c96
Show More
index.api.rsb
16 lines | 595 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