diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-12-10 14:30:54 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-12-10 14:30:54 +0000 |
commit | 22574ed74faf8ed57da5b7cd8d051106cf610c5e (patch) | |
tree | e5f46c4cd2ddccf7df3099429082ec5feba39191 /config/routes.rb | |
parent | ae876eb27b034f51c3217e346d64c98d42b29cc5 (diff) | |
download | redmine-22574ed74faf8ed57da5b7cd8d051106cf610c5e.tar.gz redmine-22574ed74faf8ed57da5b7cd8d051106cf610c5e.zip |
Removed useless routes.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8171 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config/routes.rb')
-rw-r--r-- | config/routes.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/config/routes.rb b/config/routes.rb index df69a496c..62b3f4b89 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -12,8 +12,6 @@ ActionController::Routing::Routes.draw do |map| map.signout 'logout', :controller => 'account', :action => 'logout', :conditions => {:method => :get} map.connect 'account/register', :controller => 'account', :action => 'register', :conditions => {:method => [:get, :post]} map.connect 'account/lost_password', :controller => 'account', :action => 'lost_password', :conditions => {:method => [:get, :post]} - map.connect 'account/login', :controller => 'account', :action => 'login', :conditions => {:method => [:get, :post]} - map.connect 'account/logout', :controller => 'account', :action => 'logout', :conditions => {:method => :get} map.connect 'account/activate', :controller => 'account', :action => 'activate', :conditions => {:method => :get} map.connect 'roles/workflow/:id/:role_id/:tracker_id', :controller => 'roles', :action => 'workflow' |