Skip to content

Commit

Permalink
Merge 51c028b into 57238a3
Browse files Browse the repository at this point in the history
  • Loading branch information
Clivern committed Sep 11, 2019
2 parents 57238a3 + 51c028b commit 2a8f27a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/tasks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
from .register_request import * # noqa: F401 F403
from .incident_update import * # noqa: F401 F403
from .notify_subscriber import * # noqa: F401 F403
from .verify_subscription import * # noqa: F401 F403
from .verify_subscriber import * # noqa: F401 F403
from .ping import * # noqa: F401 F403
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
"""
Verify Subscription Tasks
Verify Subscriber Tasks
"""

# Third Party Library
from celery import shared_task


@shared_task
def verify_subscriber_email():
def verify_email():
pass


@shared_task
def verify_subscriber_phone():
def verify_phone():
pass


@shared_task
def verify_subscriber_endpoint():
def verify_endpoint():
pass

0 comments on commit 2a8f27a

Please sign in to comment.