Initialize fork and rebrand app to event_manager
CI / Server (push) Has been cancelled
Linters / Frappe Linter (push) Has been cancelled
Linters / Vulnerable Dependency Check (push) Has been cancelled
UI Tests / Playwright E2E Tests (push) Has been cancelled

This commit is contained in:
2026-05-11 09:56:57 +02:00
parent f82bb803ac
commit 786cbc724f
500 changed files with 41152 additions and 2 deletions
+15
View File
@@ -0,0 +1,15 @@
from event_manager.install import ZOOM_INTEGRATION_CUSTOM_FIELDS
from event_manager.utils import delete_custom_fields
def before_uninstall():
delete_custom_fields_for_zoom_integration()
def before_app_uninstall(app_name):
if app_name == "zoom_integration":
delete_custom_fields_for_zoom_integration()
def delete_custom_fields_for_zoom_integration():
delete_custom_fields(ZOOM_INTEGRATION_CUSTOM_FIELDS)