FIX: add 'noindex' header to rss feed responses.

This commit is contained in:
Vinoth Kannan
2020-01-24 09:30:27 +05:30
parent 45b37a8bd1
commit b6765aac4b
3 changed files with 12 additions and 2 deletions

View File

@ -47,6 +47,8 @@ class UsersController < ApplicationController
:admin_login,
:confirm_admin]
after_action :add_noindex_header, only: [:show]
def index
end
@ -73,8 +75,6 @@ class UsersController < ApplicationController
track_visit_to_user_profile
end
response.headers['X-Robots-Tag'] = 'noindex'
# This is a hack to get around a Rails issue where values with periods aren't handled correctly
# when used as part of a route.
if params[:external_id] && params[:external_id].ends_with?('.json')