Gallery-Archivist/backend/api/user/urls.py
2025-02-02 23:45:29 +01:00

8 lines
211 B
Python

from django.urls import path
from .views import ProfileView, LogoutView
urlpatterns = [
path("logout/", LogoutView.as_view(), name="logout"),
path("profile/", ProfileView.as_view(), name="profile"),
]