14 lines
494 B
Python
14 lines
494 B
Python
"""Common account URLs"""
|
|
from django.urls import path
|
|
|
|
from account.views import common as views
|
|
|
|
app_name = 'account'
|
|
|
|
urlpatterns = [
|
|
path('user/', views.UserView.as_view(), name='user-get-update'),
|
|
path('refresh-token/', views.RefreshTokenView.as_view(), name='refresh-token'),
|
|
path('change-email/', views.ChangeEmailView.as_view(), name='change-email'),
|
|
path('change-email/confirm/<uidb64>/<token>/', views.ChangeEmailConfirmView.as_view(), name='change-email-confirm'),
|
|
]
|