diff --git a/project_followers/__init__.py b/project_followers/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/project_followers/__manifest__.py b/project_followers/__manifest__.py deleted file mode 100644 index 2af4110..0000000 --- a/project_followers/__manifest__.py +++ /dev/null @@ -1,26 +0,0 @@ -{ - 'name': 'Project Followers', - 'version': '14.0.1.0.0', - 'description': 'disable partner checked by while sending a message in project task chatter', - 'summary': '', - 'author': '', - 'website': '', - 'license': 'LGPL-3', - 'category': '', - 'depends': [ - 'base','mail' - ], - 'data': [ - '' - ], - 'demo': [ - '' - ], - 'auto_install': False, - 'application': False, - "assets": { - "web.assets_frontend": [ - "project_followers/static/src/js/suggested_recipient_info_custom.js", - ], - }, -} \ No newline at end of file diff --git a/project_followers/static/js/suggested_recipient_info_custom.js b/project_followers/static/js/suggested_recipient_info_custom.js deleted file mode 100644 index fcc8549..0000000 --- a/project_followers/static/js/suggested_recipient_info_custom.js +++ /dev/null @@ -1,17 +0,0 @@ -odoo.define('project_followers.suggested_recipient_info_custom', function (require) { - 'use strict'; - - const SuggestedRecipientInfo = require('mail.suggested_recipient_info'); - - SuggestedRecipientInfo.include({ - /** - * @private - * @returns {boolean} - */ - _computeIsSelected: function () { - // Votre code de surcharge ici - // N'oubliez pas d'appeler la fonction d'origine si nécessaire - return this.partner ? this.isSelected : false; - }, - }); -}); \ No newline at end of file