From c558b8b0a3ca6079af71ab91114fb10fdefd263e 2015-06-29 16:16:20 From: Jean-Philippe Lang Date: 2015-06-29 16:16:20 Subject: [PATCH] Adds a named route for test email. git-svn-id: http://svn.redmine.org/redmine/trunk@14391 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/settings/_notifications.html.erb b/app/views/settings/_notifications.html.erb index 59a30a9..e75a201 100644 --- a/app/views/settings/_notifications.html.erb +++ b/app/views/settings/_notifications.html.erb @@ -30,7 +30,7 @@
-<%= link_to l(:label_send_test_email), { :controller => 'admin', :action => 'test_email' }, :method => :post %> +<%= link_to l(:label_send_test_email), test_email_path, :method => :post %>
<%= submit_tag l(:button_save) %> diff --git a/config/routes.rb b/config/routes.rb index 5b6783a..1fc5beb 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -324,7 +324,7 @@ Rails.application.routes.draw do get 'admin/projects', :to => 'admin#projects' get 'admin/plugins', :to => 'admin#plugins' get 'admin/info', :to => 'admin#info' - post 'admin/test_email', :to => 'admin#test_email' + post 'admin/test_email', :to => 'admin#test_email', :as => 'test_email' post 'admin/default_configuration', :to => 'admin#default_configuration' resources :auth_sources do