diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2022-03-19 09:56:46 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2022-03-19 09:56:46 +0000 |
commit | f286a6044be49b88b067f89072618aecc7164caa (patch) | |
tree | 6359dfe601c787be72932e98a862f5b99e98d11f /config/routes.rb | |
parent | 65a91d13a0ef8a08f2cb118ea0bda716910db6a9 (diff) | |
download | redmine-f286a6044be49b88b067f89072618aecc7164caa.tar.gz redmine-f286a6044be49b88b067f89072618aecc7164caa.zip |
Deprecate and rename rss_* methods to atom_* methods (#15118).
Patch by Mischa The Evil and Marius BÄ‚LTEANU
git-svn-id: http://svn.redmine.org/redmine/trunk@21467 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config/routes.rb')
-rw-r--r-- | config/routes.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb index ccfd00195..5cb0055e5 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -89,7 +89,7 @@ Rails.application.routes.draw do match 'my', :controller => 'my', :action => 'index', :via => :get # Redirects to my/page get 'my/api_key', :to => 'my#show_api_key', :as => 'my_api_key' post 'my/api_key', :to => 'my#reset_api_key' - post 'my/rss_key', :to => 'my#reset_rss_key', :as => 'my_rss_key' + post 'my/atom_key', :to => 'my#reset_atom_key', :as => 'my_atom_key' match 'my/password', :controller => 'my', :action => 'password', :via => [:get, :post] match 'my/add_block', :controller => 'my', :action => 'add_block', :via => :post match 'my/remove_block', :controller => 'my', :action => 'remove_block', :via => :post |