clean: rm online tournament

This commit is contained in:
2024-05-13 16:49:10 +02:00
parent ae76b82169
commit bb6353f578
25 changed files with 2 additions and 1196 deletions

View File

@ -13,7 +13,6 @@ from channels.auth import AuthMiddlewareStack
import chat.routing
import matchmaking.routing
import tournament.routing
import games.routing
import notice.routing
@ -27,7 +26,6 @@ application = ProtocolTypeRouter({
URLRouter(
chat.routing.websocket_urlpatterns +
matchmaking.routing.websocket_urlpatterns +
tournament.routing.websocket_urlpatterns +
games.routing.websocket_urlpatterns +
notice.routing.websocket_urlpatterns
)

View File

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

View File

@ -23,7 +23,6 @@ urlpatterns = [
path('api/profiles/', include('profiles.urls')),
path('api/accounts/', include('accounts.urls')),
path('api/chat/', include('chat.urls')),
path('api/tournaments/', include('tournament.urls')),
path('api/games/', include('games.urls')),
re_path(r'^api/', handler_404_view),
path('', include('frontend.urls')),