Files
blechreiz-website/eventplanner_gcal/management/commands/gcal_stop_subscriptions.py
2026-04-08 22:09:51 +02:00

11 lines
274 B
Python

from django.core.management.base import BaseCommand
from eventplanner_gcal.google_sync import stop_all_gcal_subscriptions
class Command(BaseCommand):
help = 'Stops all GCal subscriptions'
def handle(self, *args, **options):
stop_all_gcal_subscriptions()