From f26f1e2a5bbf96f4580c4a1c63d3b620cb008f49 Mon Sep 17 00:00:00 2001 From: Asger Geel Weirsoee Date: Fri, 27 Feb 2026 12:22:58 +0100 Subject: [PATCH] Wire lobby routes into main URL config --- partyhub/urls.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/partyhub/urls.py b/partyhub/urls.py index 4a4b4d3..373484e 100644 --- a/partyhub/urls.py +++ b/partyhub/urls.py @@ -1,6 +1,6 @@ from django.contrib import admin from django.http import JsonResponse -from django.urls import path +from django.urls import path, include def health(_request): @@ -8,6 +8,7 @@ def health(_request): urlpatterns = [ + path('api/lobby/', include('lobby.urls')) , path('admin/', admin.site.urls), path('healthz', health, name='healthz'), ]