mirror of https://github.com/openspug/spug
19 lines
612 B
Python
19 lines
612 B
Python
# Copyright: (c) OpenSpug Organization. https://github.com/openspug/spug
|
|
# Copyright: (c) <spug.dev@gmail.com>
|
|
# Released under the AGPL-3.0 License.
|
|
# from django.urls import path
|
|
from django.urls import path
|
|
from apps.setting.views import *
|
|
from apps.setting.user import UserSettingView
|
|
|
|
urlpatterns = [
|
|
path('', SettingView.as_view()),
|
|
path('user/', UserSettingView.as_view()),
|
|
path('ldap/', LDAPUserView.as_view()),
|
|
path('ldap_test/', ldap_test),
|
|
path('ldap_import/', ldap_import),
|
|
path('email_test/', email_test),
|
|
path('mfa/', MFAView.as_view()),
|
|
path('about/', get_about)
|
|
]
|