summaryrefslogtreecommitdiffstats
path: root/app/controllers/welcome_controller.rb
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2022-11-01 03:24:17 +0000
committerGo MAEDA <maeda@farend.jp>2022-11-01 03:24:17 +0000
commitdcdf27b8958606b6a6893c4b754ef2c97c3c0313 (patch)
tree88a9645177195be18a88d8abca62f364cefac53d /app/controllers/welcome_controller.rb
parente1928aaf1944559ce3fd5594fe0988d42719c689 (diff)
downloadredmine-dcdf27b8958606b6a6893c4b754ef2c97c3c0313.tar.gz
redmine-dcdf27b8958606b6a6893c4b754ef2c97c3c0313.zip
Render all visible projects in robots.txt (including closed projects) (#37807).
Patch by Holger Just. git-svn-id: https://svn.redmine.org/redmine/trunk@21938 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers/welcome_controller.rb')
-rw-r--r--app/controllers/welcome_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/welcome_controller.rb b/app/controllers/welcome_controller.rb
index a32a944a4..e526fe5b1 100644
--- a/app/controllers/welcome_controller.rb
+++ b/app/controllers/welcome_controller.rb
@@ -25,7 +25,7 @@ class WelcomeController < ApplicationController
end
def robots
- @projects = Project.all_public.active
+ @projects = Project.visible(User.anonymous)
render :layout => false, :content_type => 'text/plain'
end
end