From 4abe9eb7b52bd9005f88c0a8207fa4080894138a Mon Sep 17 00:00:00 2001 From: majouda Date: Wed, 6 Mar 2024 14:53:32 -0500 Subject: [PATCH] TA#63122 [MIG] Module mail_activity_not_deleted --- .docker_files/main/__manifest__.py | 23 ++++++++++++----------- Dockerfile | 1 + 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/.docker_files/main/__manifest__.py b/.docker_files/main/__manifest__.py index 1962f8a..f78e057 100644 --- a/.docker_files/main/__manifest__.py +++ b/.docker_files/main/__manifest__.py @@ -2,16 +2,17 @@ # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). { - 'name': 'Main Module', - 'version': '1.0.0', - 'author': 'Numigi', - 'maintainer': 'Numigi', - 'website': 'https://www.numigi.com', - 'license': 'LGPL-3', - 'category': 'Other', - 'summary': 'Install all addons required for testing.', - 'depends': [ - 'fetchmail_outlook_by_company', + "name": "Main Module", + "version": "1.0.0", + "author": "Numigi", + "maintainer": "Numigi", + "website": "https://www.numigi.com", + "license": "LGPL-3", + "category": "Other", + "summary": "Install all addons required for testing.", + "depends": [ + "fetchmail_outlook_by_company", + "mail_activity_not_deleted", ], - 'installable': True, + "installable": True, } diff --git a/Dockerfile b/Dockerfile index aa384b1..b368025 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,7 @@ RUN mkdir -p "${THIRD_PARTY_ADDONS}" && chown -R odoo "${THIRD_PARTY_ADDONS}" USER odoo COPY fetchmail_outlook_by_company /mnt/extra-addons/fetchmail_outlook_by_company +COPY mail_activity_not_deleted /mnt/extra-addons/mail_activity_not_deleted COPY .docker_files/main /mnt/extra-addons/main COPY .docker_files/odoo.conf /etc/odoo