-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathurls.py
More file actions
19 lines (14 loc) · 701 Bytes
/
Copy pathurls.py
File metadata and controls
19 lines (14 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from django.urls import include, path
from .me import views as me_views
from .auth import views as auth_views
from .services import urls as services_urls
app_name = 'multauth'
urlpatterns = [
path('me/', me_views.MeView.as_view(), name='me'),
path('me/password/', me_views.MePasswordView.as_view(), name='me-password'),
path('me/passcode/', me_views.MePasscodeView.as_view(), name='me-passcode'),
path('signin/', auth_views.SigninView.as_view(), name='signin'),
path('signup/', auth_views.SignupView.as_view(), name='signup'),
path('signup/verification/', auth_views.SignupVerificationView.as_view(), name='signup-verification'),
path(r'^', include(services_urls)),
]