Update dj_rest_auth/urls.py

Co-Authored-By: Daniele Tricoli <eriol@mornie.org>
This commit is contained in:
Michael 2020-04-16 00:28:05 -05:00 committed by GitHub
parent 8583c5597e
commit d882edcf10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,6 +24,6 @@ if getattr(settings, 'REST_USE_JWT', True):
)
urlpatterns += [
url(r'token/verify/$', TokenVerifyView.as_view(), name='token_verify'),
url(r'^token/verify/$', TokenVerifyView.as_view(), name='token_verify'),
url(r'^token/refresh/$', TokenRefreshView.as_view(), name='token_refresh'),
]