mail_bot/models/ir_http.py

15 lines
424 B
Python
Raw Permalink Normal View History

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models
class Http(models.AbstractModel):
_inherit = 'ir.http'
def session_info(self):
res = super(Http, self).session_info()
if self.env.user._is_internal():
res['odoobot_initialized'] = self.env.user.odoobot_state not in [False, 'not_initialized']
return res