2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/app/controllers/robots_txt_controller.rb
2013-02-11 17:14:36 +11:00

15 lines
345 B
Ruby

class RobotsTxtController < ApplicationController
layout false
skip_before_filter :check_xhr
skip_before_filter :check_restricted_access
def index
path = if SiteSetting.allow_index_in_robots_txt && !SiteSetting.restrict_access
:index
else
:no_index
end
render path, content_type: 'text/plain'
end
end