From 313ee9c3e07ce0fd424bfd8cef0e7ccbc05a10eb Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sat, 7 Aug 2021 16:36:46 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Move=20API=20path=20to=20`api/co?= =?UTF-8?q?re/`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/sophon/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/sophon/urls.py b/backend/sophon/urls.py index ad618a1..8c9e72c 100644 --- a/backend/sophon/urls.py +++ b/backend/sophon/urls.py @@ -21,5 +21,5 @@ urlpatterns = [ path('admin/', admin.site.urls), path('api/auth/token/', CustomObtainAuthToken.as_view()), path('api/auth/session/', include("rest_framework.urls")), - path('api/', include("sophon.core.urls")), + path('api/core/', include("sophon.core.urls")), ]