2013-02-10 19:02:57 -05:00
|
|
|
class RobotsTxtController < ApplicationController
|
|
|
|
layout false
|
2015-10-15 05:42:41 -04:00
|
|
|
skip_before_filter :preload_json, :check_xhr, :redirect_to_login_if_required
|
2013-02-10 19:02:57 -05:00
|
|
|
|
|
|
|
def index
|
2015-10-15 05:42:41 -04:00
|
|
|
path = SiteSetting.allow_index_in_robots_txt ? :index : :no_index
|
2013-02-10 19:02:57 -05:00
|
|
|
render path, content_type: 'text/plain'
|
|
|
|
end
|
|
|
|
end
|