base
This commit is contained in:
8
settingspanel/urls.py
Normal file
8
settingspanel/urls.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from django.urls import path
|
||||
from .views import SettingsView, test_connection
|
||||
|
||||
app_name = "settingspanel"
|
||||
urlpatterns = [
|
||||
path("", SettingsView.as_view(), name="index"),
|
||||
path("test-connection/", test_connection, name="test_connection"),
|
||||
]
|
Reference in New Issue
Block a user