-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from teamhashed/whoismaruf/issue8
Registration no include auth cookies.
- Loading branch information
Showing
3 changed files
with
46 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,39 @@ | ||
from django.urls import path, include | ||
from django.urls import path, include, re_path | ||
from credentials.api.views import get_tokens_for_user | ||
from dj_rest_auth.registration.views import VerifyEmailView, ResendEmailVerificationView | ||
from credentials.api.views import RegisterViewWithSetCookies | ||
from django.views.generic import TemplateView | ||
|
||
|
||
registration_urls = [ | ||
path('', RegisterViewWithSetCookies.as_view()), | ||
path('verify-email/', VerifyEmailView.as_view(), name='rest_verify_email'), | ||
path('resend-email/', ResendEmailVerificationView.as_view(), name="rest_resend_email"), | ||
|
||
# This url is used by django-allauth and empty TemplateView is | ||
# defined just to allow reverse() call inside app, for example when email | ||
# with verification link is being sent, then it's required to render email | ||
# content. | ||
|
||
# account_confirm_email - You should override this view to handle it in | ||
# your API client somehow and then, send post to /verify-email/ endpoint | ||
# with proper key. | ||
# If you don't want to use API on that step, then just use ConfirmEmailView | ||
# view from: | ||
# django-allauth https://github.com/pennersr/django-allauth/blob/master/allauth/account/views.py | ||
re_path( | ||
r'^account-confirm-email/(?P<key>[-:\w]+)/$', TemplateView.as_view(), | ||
name='account_confirm_email', | ||
), | ||
path( | ||
'account-email-verification-sent/', TemplateView.as_view(), | ||
name='account_email_verification_sent', | ||
), | ||
] | ||
|
||
|
||
urlpatterns = [ | ||
path('', include('dj_rest_auth.urls')), | ||
path('registration/', include('dj_rest_auth.registration.urls')), | ||
path('registration/', include(registration_urls)), | ||
path('get/refresh/', get_tokens_for_user), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters