9 lines
267 B
Python
9 lines
267 B
Python
|
from django.core.management.base import NoArgsCommand
|
||
|
|
||
|
from eventplanner_gcal.signals import stopAllGCalSubscriptions
|
||
|
|
||
|
class Command(NoArgsCommand):
|
||
|
help = 'Stops all GCal subscriptions'
|
||
|
def handle_noargs(self, **options):
|
||
|
stopAllGCalSubscriptions()
|