This repository has been archived on 2023-03-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
osr-discourse-src/app/controllers/robots_txt_controller.rb
T
2013-06-25 15:05:25 -04:00

15 lines
263 B
Ruby

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