From 5b2ca201eae791047032eba944adc460c55bc8ff Mon Sep 17 00:00:00 2001 From: SKairinos Date: Mon, 16 Oct 2023 09:21:25 +0100 Subject: [PATCH] fix: include user urls in service --- codeforlife/urls.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/codeforlife/urls.py b/codeforlife/urls.py index e43627dc..977e7830 100644 --- a/codeforlife/urls.py +++ b/codeforlife/urls.py @@ -42,6 +42,11 @@ def service_urlpatterns( ), name="session-expired", ), + path( + "api/", + include("codeforlife.user.urls"), + name="user", + ), path( "api/", include(api_urls_path),