mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 04:20:17 +02:00
13 lines
330 B
Python
13 lines
330 B
Python
from django.urls import include, path
|
|
|
|
from allianceauth import urls
|
|
|
|
urlpatterns = [
|
|
path('', include(urls)),
|
|
]
|
|
|
|
handler500 = 'allianceauth.views.Generic500Redirect'
|
|
handler404 = 'allianceauth.views.Generic404Redirect'
|
|
handler403 = 'allianceauth.views.Generic403Redirect'
|
|
handler400 = 'allianceauth.views.Generic400Redirect'
|