from django.urls import path
from . import api_views, views

app_name = 'waitlist'

urlpatterns = [
    path('submit/', views.submit_waitlist, name='submit'),
    path('verify/', views.verify_waitlist, name='verify'),
    path('resend/', views.resend_verification, name='resend'),

    # The signed-in pair. No email in either, because the account is the
    # address — see the module docstring in api_views.py.
    path('status/', api_views.waitlist_status, name='status'),
    path('join/', api_views.waitlist_join, name='join'),
]