2013-02-10 19:02:57 -05:00
|
|
|
class RobotsTxtController < ApplicationController
|
|
|
|
layout false
|
|
|
|
skip_before_filter :check_xhr
|
|
|
|
|
|
|
|
def index
|
2013-06-25 15:05:16 -04:00
|
|
|
path = if SiteSetting.allow_index_in_robots_txt
|
2013-02-10 19:02:57 -05:00
|
|
|
:index
|
|
|
|
else
|
|
|
|
:no_index
|
|
|
|
end
|
2013-02-25 11:42:20 -05:00
|
|
|
|
2013-02-10 19:02:57 -05:00
|
|
|
render path, content_type: 'text/plain'
|
|
|
|
end
|
|
|
|
end
|