http_routing/__init__.py

13 lines
280 B
Python
Raw Normal View History

2024-05-03 12:59:22 +03:00
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import controllers
from . import models
from odoo.http import request
def _post_init_hook(env):
if request:
request.is_frontend = False
request.is_frontend_multilang = False