mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2026-01-01 02:52:48 +00:00
11 lines
308 B
Python
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")
|
|
]
|