From adf0c5ceeddb4bbaee3b4a8ede0df6e88a6c867d Mon Sep 17 00:00:00 2001 From: starnakin Date: Wed, 20 Dec 2023 21:10:12 +0100 Subject: [PATCH] core: change tournament api url --- trancendence/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trancendence/urls.py b/trancendence/urls.py index 0c9cd6d..38eb6d0 100644 --- a/trancendence/urls.py +++ b/trancendence/urls.py @@ -22,6 +22,6 @@ urlpatterns = [ path('api/profiles/', include('profiles.urls')), path('api/accounts/', include('accounts.urls')), path('api/chat/', include('chat.urls')), - path('api/tournament', include('tournament.urls')), + path('api/tournaments/', include('tournament.urls')), path('', include('frontend.urls')), ]