14 lines
396 B
Python
14 lines
396 B
Python
# Copyright: (c) OpenSpug Organization. https://github.com/openspug/spug
|
|
# Copyright: (c) <spug.dev@gmail.com>
|
|
# Released under the MIT License.
|
|
# from django.urls import path
|
|
from django.conf.urls import url
|
|
from .views import *
|
|
|
|
urlpatterns = [
|
|
url(r'^$', SettingView.as_view()),
|
|
url(r'^ldap_test/$', ldap_test),
|
|
url(r'^email_test/$', email_test),
|
|
url(r'^about/$', get_about)
|
|
]
|