diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-03-11 11:43:27 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-03-11 11:43:27 +0000 |
commit | bd47af098fefef968647f7634105b22eb115d4b2 (patch) | |
tree | 8ff70b22d6baf6925bfe81a6242d2a91b1411b9b /config/routes.rb | |
parent | 81185a8d93c049eb77d3c3638dc01ab4e3a65f07 (diff) | |
download | redmine-bd47af098fefef968647f7634105b22eb115d4b2.tar.gz redmine-bd47af098fefef968647f7634105b22eb115d4b2.zip |
Merged LdapAuthSourceController into AuthSourceController.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9232 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config/routes.rb')
-rw-r--r-- | config/routes.rb | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/config/routes.rb b/config/routes.rb index 772447cae..abf91729a 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -370,21 +370,6 @@ ActionController::Routing::Routes.draw do |map| map.connect 'auth_sources/update/:id', :controller => 'auth_sources', :action => 'update', :id => /\d+/, :conditions => {:method => :post} - map.connect 'ldap_auth_sources', :controller => 'ldap_auth_sources', - :action => 'index', :conditions => {:method => :get} - map.connect 'ldap_auth_sources/new', :controller => 'ldap_auth_sources', - :action => 'new', :conditions => {:method => :get} - map.connect 'ldap_auth_sources/create', :controller => 'ldap_auth_sources', - :action => 'create', :conditions => {:method => :post} - map.connect 'ldap_auth_sources/destroy/:id', :controller => 'ldap_auth_sources', - :action => 'destroy', :id => /\d+/, :conditions => {:method => :post} - map.connect 'ldap_auth_sources/test_connection/:id', :controller => 'ldap_auth_sources', - :action => 'test_connection', :conditions => {:method => :get} - map.connect 'ldap_auth_sources/edit/:id', :controller => 'ldap_auth_sources', - :action => 'edit', :id => /\d+/, :conditions => {:method => :get} - map.connect 'ldap_auth_sources/update/:id', :controller => 'ldap_auth_sources', - :action => 'update', :id => /\d+/, :conditions => {:method => :post} - map.connect 'workflows', :controller => 'workflows', :action => 'index', :conditions => {:method => :get} map.connect 'workflows/edit', :controller => 'workflows', |