more gcal fixes

This commit is contained in:
2026-04-09 16:26:17 +02:00
parent 6390211d5e
commit 51a6a8be83
2 changed files with 73 additions and 26 deletions

View File

@@ -41,7 +41,7 @@ def event_post_save_handler(sender, instance, created, **kwargs):
Currently disabled - remove the early return to enable.
"""
# Disabled - remove this return statement to enable auto-sync
return
#return
event = instance
service = get_service_object()
@@ -73,7 +73,7 @@ def event_pre_delete_handler(sender, instance, **kwargs):
Currently disabled - remove the early return to enable.
"""
# Disabled - remove this return statement to enable auto-sync
return
#return
event = instance
service = get_service_object()
@@ -100,7 +100,7 @@ def participation_post_save_handler(sender, instance, **kwargs):
Currently disabled - remove the early return to enable.
"""
# Disabled - remove this return statement to enable auto-sync
return
#return
participation = instance
service = get_service_object()