kers/users/urls.py

9 lines
143 B
Python
Raw Normal View History

2020-07-22 04:21:29 +02:00
from django.urls import path
from . import views
urlpatterns = [
path('profile', views.profile),
2020-07-22 05:03:01 +02:00
path('logout', views.logout_view)
2020-07-22 04:21:29 +02:00
]