forked from Techsystech/web
17 lines
478 B
Python
17 lines
478 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (C) 2018 Ventor, Xpansa Group (<https://ventor.tech/>)
|
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
|
|
|
|
import openerp
|
|
from openerp import http
|
|
|
|
|
|
class Main(openerp.addons.web.controllers.main.Home):
|
|
|
|
@http.route('/robots.txt', type='http', auth="none")
|
|
def robots(self):
|
|
return http.request.make_response(
|
|
"User-agent: *\nDisallow: /",
|
|
[('Content-Type', 'text/plain')],
|
|
)
|