From 40e1b42078572eb6d69bf5cf1fab13cca1af0e69 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Tue, 9 Mar 2021 12:54:57 +0100 Subject: [PATCH] Fix API path Signed-off-by: Yohann D'ANELLO --- apps/api/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/urls.py b/apps/api/urls.py index 8b0e1a6e..3e61d587 100644 --- a/apps/api/urls.py +++ b/apps/api/urls.py @@ -48,6 +48,6 @@ app_name = 'api' # Additionally, we include login URLs for the browsable API. urlpatterns = [ url('^', include(router.urls)), - url('me', UserInformationView.as_view()), + url('^me/', UserInformationView.as_view()), url('^api-auth/', include('rest_framework.urls', namespace='rest_framework')), ]