12 lines
292 B
Python
12 lines
292 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"),
|
|
]
|