Remove: old logout view class

This commit is contained in:
Aroy-Art 2025-02-08 17:58:07 +01:00
parent eb5e35df0a
commit 3eef803a94
Signed by: Aroy
GPG key ID: 583642324A1D2070
2 changed files with 1 additions and 19 deletions

View file

@ -1,8 +1,7 @@
from django.urls import path
from .views import ProfileView, LogoutView
from .views import ProfileView
urlpatterns = [
path("logout/", LogoutView.as_view(), name="logout"),
path("profile/", ProfileView.as_view(), name="profile"),
]