diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-12-29 08:04:00 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-12-29 08:04:00 +0000 |
commit | c4c4931c6b7aeaf9886f2e497d303d538e26cfb2 (patch) | |
tree | e3df7587227380b0374354aa20a8ef72c2154667 /config/routes.rb | |
parent | fac50f1143f55e56f7d54b0bbfb0925f9d761fc0 (diff) | |
download | redmine-c4c4931c6b7aeaf9886f2e497d303d538e26cfb2.tar.gz redmine-c4c4931c6b7aeaf9886f2e497d303d538e26cfb2.zip |
route: code layout clean up welcome route
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8415 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config/routes.rb')
-rw-r--r-- | config/routes.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb index 24326b051..c1a5a6f31 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -351,7 +351,8 @@ ActionController::Routing::Routes.draw do |map| :conditions => {:method => :get} end - map.connect 'robots.txt', :controller => 'welcome', :action => 'robots', :conditions => {:method => :get} + map.connect 'robots.txt', :controller => 'welcome', + :action => 'robots', :conditions => {:method => :get} # Used for OpenID map.root :controller => 'account', :action => 'login' |