diff --git a/server.py b/server.py index 9d57149..50acc47 100644 --- a/server.py +++ b/server.py @@ -51,6 +51,7 @@ MODULES = { "NextCloudIntegration": "nextcloud-integration", "OfficeAssistant": "office-assistant", "PhoneIsraelFormat": "phone-israel-format", "SmartAssistant": "smart-assistant", "SmsIntegration": "sms-integration", "WhatsAppIntegration": "whatsapp-integration", + "DataMigration": "data-migration", } # Extension dependency tree and install order @@ -74,6 +75,7 @@ DEPENDENCIES = { 'NetHamishpat': ['HebrewLanguage', 'LegalCrm'], 'DigitalSignature': ['HebrewLanguage', 'LegalCrm'], 'SmartAssistant': ['HebrewLanguage', 'LegalCrm'], + 'DataMigration': [], } INSTALL_ORDER = [ @@ -84,6 +86,7 @@ INSTALL_ORDER = [ 'SmsIntegration', 'WhatsAppIntegration', 'GreenInvoiceBilling', 'CrmAssistant', 'OfficeAssistant', 'LegalCrm', 'NetHamishpat', 'DigitalSignature', 'SmartAssistant', + 'DataMigration', ] SSL_CTX = ssl.create_default_context()