aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/urls.py
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2025-03-27 19:27:37 +0100
committerGravatar Johannes Christ <[email protected]>2025-07-19 21:35:42 +0200
commit0c19201e76d3ce5b48367341640a0ead2aa72030 (patch)
tree51afe01b7ea21cfb5141da3a19467f05c1923d96 /pydis_site/urls.py
parentFix newly added lint rules from new ruff version (diff)
Set up forms app with authenticationforms-bootstrap
This begins the work of integrating the forms backend into the site. Changes, until complete, will be merged into the `forms` tracking branch.
Diffstat (limited to 'pydis_site/urls.py')
-rw-r--r--pydis_site/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pydis_site/urls.py b/pydis_site/urls.py
index 799e8600..85f2aded 100644
--- a/pydis_site/urls.py
+++ b/pydis_site/urls.py
@@ -8,6 +8,7 @@ NON_STATIC_PATTERNS = [
# External API ingress (over the net)
path('api/', include('pydis_site.apps.api.urls', namespace='api')),
+ path('forms/', include('pydis_site.apps.forms.urls', namespace='forms')),
# Internal API ingress (cluster local)
path('pydis-api/', include('pydis_site.apps.api.urls', namespace='internal_api')),