2025-01-28 22:16:56 +01:00
|
|
|
from django.urls import path
|
|
|
|
|
2025-02-02 23:45:29 +01:00
|
|
|
from .views import ProfileView, LogoutView
|
2025-01-28 22:16:56 +01:00
|
|
|
|
|
|
|
urlpatterns = [
|
2025-02-02 23:45:29 +01:00
|
|
|
path("logout/", LogoutView.as_view(), name="logout"),
|
2025-01-28 22:16:56 +01:00
|
|
|
path("profile/", ProfileView.as_view(), name="profile"),
|
|
|
|
]
|