diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/routes.rb b/config/routes.rb index b4c792b99..e3ed8859a 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -20,8 +20,8 @@ RedmineApp::Application.routes.draw do match 'login', :to => 'account#login', :as => 'signin' match 'logout', :to => 'account#logout', :as => 'signout' - match 'account/register', :to => 'account#register', :via => [:get, :post] - match 'account/lost_password', :to => 'account#lost_password', :via => [:get, :post] + match 'account/register', :to => 'account#register', :via => [:get, :post], :as => 'register' + match 'account/lost_password', :to => 'account#lost_password', :via => [:get, :post], :as => 'lost_password' match 'account/activate', :to => 'account#activate', :via => :get match '/news/preview', :controller => 'previews', :action => 'news', :as => 'preview_news' |