2023-08-14 03:05:44 +00:00

12 lines
329 B
Python

from allianceauth import urls
from django.urls import include, path
urlpatterns = [
path('', include(urls)),
]
handler500 = 'allianceauth.views.Generic500Redirect'
handler404 = 'allianceauth.views.Generic404Redirect'
handler403 = 'allianceauth.views.Generic403Redirect'
handler400 = 'allianceauth.views.Generic400Redirect'