From 0c19201e76d3ce5b48367341640a0ead2aa72030 Mon Sep 17 00:00:00 2001 From: Johannes Christ Date: Thu, 27 Mar 2025 19:27:37 +0100 Subject: Set up forms app with authentication This begins the work of integrating the forms backend into the site. Changes, until complete, will be merged into the `forms` tracking branch. --- pydis_site/urls.py | 1 + 1 file changed, 1 insertion(+) (limited to 'pydis_site/urls.py') 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')), -- cgit v1.2.3