OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/config/routes.rb

13 lines
734 B

13 years ago
ActionController::Routing::Routes.draw do |map|
map.connect 'projects/new', :action => 'new', :controller => 'projects'
13 years ago
map.with_options :controller => 'my_projects_overviews' do |my|
my.connect 'projects/:id', :action => 'index', :id => /[^\/]+/
my.connect 'my_projects_overview/:id/page_layout', :action => 'page_layout'
my.connect 'my_projects_overview/:id/page_layout/add_block', :action => 'add_block'
my.connect 'my_projects_overview/:id/page_layout/remove_block', :action => 'remove_block'
my.connect 'my_projects_overview/:id/page_layout/order_blocks', :action => 'order_blocks'
my.connect 'my_projects_overview/:id/page_layout/update_custom_element', :action => 'update_custom_element'
13 years ago
end
end