diff --git a/app/sage.py b/app/sage.py index 2502f138..5f56c830 100644 --- a/app/sage.py +++ b/app/sage.py @@ -28,6 +28,10 @@ from unipay.init import load_unipay from product_management.init import load_product_management from supplychain.init import load_supplychain from accounting.init import load_accounting +try: + from app_audit.init import load_app_audit +except ImportError: + def load_app_audit(): pass from bugfix.init import load_bugfix from discount.init import load_discount from tenant.init import load_tenant @@ -44,6 +48,7 @@ def init(): load_appbase() load_rbac() load_accounting() + load_app_audit() load_unipay() load_product_management() load_supplychain()