mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 08:09:33 +08:00
e5888cf090
(uploads / avatars / non GET requests)
15 lines
278 B
Ruby
15 lines
278 B
Ruby
class RobotsTxtController < ApplicationController
|
|
layout false
|
|
skip_before_filter :preload_json, :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
|