core: change tournament api url

This commit is contained in:
starnakin 2023-12-20 21:10:12 +01:00
parent 1032a8fd98
commit adf0c5ceed

View File

@ -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')),
]