]> source.dussan.org Git - redmine.git/commitdiff
Adds a named route for test email.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 29 Jun 2015 16:16:20 +0000 (16:16 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Mon, 29 Jun 2015 16:16:20 +0000 (16:16 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@14391 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/settings/_notifications.html.erb
config/routes.rb

index 59a30a9a8d2dfd3796dfa5445f49261222242612..e75a2014f4e1ea1c364bedd22019e77552138299 100644 (file)
@@ -30,7 +30,7 @@
 </fieldset>
 
 <div style="float:right;">
-<%= 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 %>
 </div>
 
 <%= submit_tag l(:button_save) %>
index 5b6783a6b791dc4befdab992802a62e44042690b..1fc5bebb3824c643fe248ed9b489491a810aa264 100644 (file)
@@ -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