Files
xadm 786cbc724f
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
Initialize fork and rebrand app to event_manager
2026-05-11 09:56:57 +02:00

16 lines
414 B
Python

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)