mirror of
https://github.com/bringout/oca-ocb-mail.git
synced 2026-04-22 16:42:02 +02:00
9 lines
283 B
Python
9 lines
283 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models, fields
|
|
|
|
|
|
class DiscussCallHistory(models.Model):
|
|
_inherit = "discuss.call.history"
|
|
|
|
livechat_participant_history_ids = fields.Many2many("im_livechat.channel.member.history")
|