11 lines
274 B
Python
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()
|