Browse Source

route: code layout clean up wikis route

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8418 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/1.4.0
Toshi MARUYAMA 12 years ago
parent
commit
037ccaf46d
1 changed files with 4 additions and 2 deletions
  1. 4
    2
      config/routes.rb

+ 4
- 2
config/routes.rb View File

@@ -28,8 +28,10 @@ ActionController::Routing::Routes.draw do |map|

map.resources :time_entries, :controller => 'timelog', :collection => {:report => :get, :bulk_edit => :get, :bulk_update => :post}

map.connect 'projects/:id/wiki', :controller => 'wikis', :action => 'edit', :conditions => {:method => :post}
map.connect 'projects/:id/wiki/destroy', :controller => 'wikis', :action => 'destroy', :conditions => {:method => [:get, :post]}
map.connect 'projects/:id/wiki', :controller => 'wikis',
:action => 'edit', :conditions => {:method => :post}
map.connect 'projects/:id/wiki/destroy', :controller => 'wikis',
:action => 'destroy', :conditions => {:method => [:get, :post]}

map.with_options :controller => 'messages' do |messages_routes|
messages_routes.with_options :conditions => {:method => :get} do |messages_views|

Loading…
Cancel
Save