init: tournament

This commit is contained in:
2023-12-20 19:15:47 +01:00
parent 8ed9deab2d
commit bfcfabb35a
12 changed files with 185 additions and 0 deletions

View File

@ -43,6 +43,7 @@ INSTALLED_APPS = [
'channels',
'daphne',
'tournament.apps.TournamentConfig',
'matchmaking.apps.MatchmakingConfig',
'games.apps.GamesConfig',
'accounts.apps.AccountsConfig',

View File

@ -22,5 +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('', include('frontend.urls')),
]