blob: ea752b56936c44e1a71dc4a0aedeb32605a060a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
odoo.define('im_livechat/static/src/components/thread_preview/thread_preview.js', function (require) {
'use strict';
const components = {
ThreadPreview: require('mail/static/src/components/thread_preview/thread_preview.js'),
};
const { patch } = require('web.utils');
patch(components.ThreadPreview, 'im_livechat/static/src/components/thread_preview/thread_preview.js', {
//--------------------------------------------------------------------------
// Public
//--------------------------------------------------------------------------
/**
* @override
*/
image(...args) {
if (this.thread.channel_type === 'livechat') {
return '/mail/static/src/img/smiley/avatar.jpg';
}
return this._super(...args);
}
});
});
|