ir_http.py 371 B

1234567891011121314
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. from odoo import models
  4. class IrHttp(models.AbstractModel):
  5. _inherit = 'ir.http'
  6. @classmethod
  7. def _get_translation_frontend_modules_name(cls):
  8. mods = super(IrHttp, cls)._get_translation_frontend_modules_name()
  9. return mods + ['im_livechat']