mirror of
https://github.com/bringout/oca-ocb-mail.git
synced 2026-04-22 19:22:03 +02:00
13 lines
290 B
JavaScript
13 lines
290 B
JavaScript
/** @odoo-module **/
|
|
|
|
import { registerPatch } from '@mail/model/model_core';
|
|
import { one } from '@mail/model/model_field';
|
|
|
|
registerPatch({
|
|
name: 'Messaging',
|
|
fields: {
|
|
publicLivechatGlobal: one('PublicLivechatGlobal', {
|
|
isCausal: true,
|
|
}),
|
|
},
|
|
});
|