Odoo18-Base/addons/http_routing/__init__.py
2025-01-06 10:57:38 +07:00

13 lines
280 B
Python

# 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