Merge branch 'feature/LIL-694' into 'master'

LIL-694

See merge request lilcity/backend!196
remotes/origin/feature/LIL-711
cfwme 7 years ago
commit 5d32faf2fa
  1. 11
      apps/notification/management/commands/sendgrid_update_recipients.py

@ -0,0 +1,11 @@
from django.core.management.base import BaseCommand
from apps.notification.tasks import sendgrid_update_recipients
class Command(BaseCommand):
help = 'Update recipients in sendgrid base'
def handle(self, *args, **options):
sendgrid_update_recipients()
Loading…
Cancel
Save