diff options
author | Go MAEDA <maeda@farend.jp> | 2024-02-09 04:51:05 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2024-02-09 04:51:05 +0000 |
commit | 4feb4e5584fd4d1dc3c13a340f3410b188e62302 (patch) | |
tree | 5c1857055ae8e4dce84c578821e77f7ac584ed99 /config/routes.rb | |
parent | e6476895178647515e8bdbb658cbb6047f4a3076 (diff) | |
download | redmine-4feb4e5584fd4d1dc3c13a340f3410b188e62302.tar.gz redmine-4feb4e5584fd4d1dc3c13a340f3410b188e62302.zip |
Merged r22698 from trunk to 5.0-stable (#40208).
git-svn-id: https://svn.redmine.org/redmine/branches/5.0-stable@22700 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 ad7a44dc9..c80b75bec 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -397,7 +397,7 @@ Rails.application.routes.draw do match 'uploads', :to => 'attachments#upload', :via => :post - get 'robots', :to => 'welcome#robots' + get 'robots.:format', :to => 'welcome#robots', :constraints => {:format => 'txt'} Dir.glob File.expand_path("#{Redmine::Plugin.directory}/*") do |plugin_dir| file = File.join(plugin_dir, "config/routes.rb") |