mirror of
https://github.com/hequan2017/seal.git
synced 2026-02-03 10:13:27 +08:00
16 lines
476 B
Python
16 lines
476 B
Python
from django.urls import path
|
|
from system.views import login_view, UserPasswordUpdateView, logout_view, UserInfo, UserLogout,Menu
|
|
|
|
app_name = "system"
|
|
|
|
urlpatterns = [
|
|
path('login', login_view, name="login"),
|
|
path('password_update', UserPasswordUpdateView.as_view(), name="password_update"),
|
|
path('logout', logout_view, name="logout"),
|
|
|
|
|
|
path('api/user_info', UserInfo.as_view()),
|
|
path('api/logout', UserLogout.as_view()),
|
|
path('menu',Menu.as_view())
|
|
]
|