mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-12-18 23:05:07 +01:00
Restructure settings (#882)
* Refactor settings into importable base. User deployment should use 'from allianceauth.settings.base import *' in their project settings. * Restructure tests folder. Remove DOMAIN setting. Use localhost for services revoked emails. * Add missing python3.4 typing requirement typing is included python3.5+ * Remove legacy setup comments Remove legacy update script
This commit is contained in:
15
tests/urls.py
Normal file
15
tests/urls.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from django.conf.urls import url
|
||||
|
||||
import allianceauth.urls
|
||||
from . import views
|
||||
|
||||
urlpatterns = allianceauth.urls.urlpatterns
|
||||
|
||||
urlpatterns += [
|
||||
# Navhelper test urls
|
||||
url(r'^main-page/$', views.page, name='p1'),
|
||||
url(r'^main-page/sub-section/$', views.page, name='p1-s1'),
|
||||
url(r'^second-page/$', views.page, name='p1'),
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user