MaxKB/apps/users/urls.py
shaohuzhang1 04642eb497
Some checks are pending
sync2gitee / repo-sync (push) Waiting to run
feat: authentication
2025-04-15 20:37:38 +08:00

11 lines
308 B
Python

from django.urls import path
from . import views
app_name = "user"
urlpatterns = [
path('user/login', views.LoginView.as_view(), name='login'),
path('user/profile', views.UserProfileView.as_view(), name="user_profile"),
path('user/test', views.TestPermissionsUserView.as_view(), name="test")
]