19.0 vanilla

This commit is contained in:
Ernad Husremovic 2026-03-09 09:31:39 +01:00
parent 5df8c07b59
commit daa394e8b0
2114 changed files with 564841 additions and 299642 deletions

View file

@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
@ -7,4 +6,11 @@ from odoo import fields, models
class ResUsersSettings(models.Model):
_inherit = 'res.users.settings'
is_discuss_sidebar_category_livechat_open = fields.Boolean("Is category livechat open", default=True)
livechat_username = fields.Char("Livechat Username", help="This username will be used as your name in the livechat channels.")
livechat_lang_ids = fields.Many2many(comodel_name='res.lang', string='Livechat languages',
help="These languages, in addition to your main language, will be used to assign you to Live Chat sessions.")
livechat_expertise_ids = fields.Many2many(
"im_livechat.expertise",
string="Live Chat Expertise",
help="When forwarding live chat conversations, the chatbot will prioritize users with matching expertise.",
)