summaryrefslogtreecommitdiff
path: root/addons/website/static/src/js/widgets/media.js
blob: 900f53068bacc113fb4678107883a77cedf00c46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
odoo.define('website.widgets.media', function (require) {
'use strict';

const {ImageWidget} = require('wysiwyg.widgets.media');

ImageWidget.include({
    _getAttachmentsDomain() {
        const domain = this._super(...arguments);
        domain.push('|', ['url', '=', false], '!', ['url', '=like', '/web/image/website.%']);
        domain.push(['key', '=', false]);
        return domain;
    }
});
});