Teilnehmlogik grundlegend fertiggestellt

This commit is contained in:
juhnsa
2025-03-15 20:30:49 +01:00
parent 7fe29c5bd4
commit 3ef7d61da6
6 changed files with 84 additions and 16 deletions

View File

@@ -5,6 +5,6 @@ app_name = 'play'
urlpatterns = [
path('lobby/<str:join_code>', views.lobby, name='lobby'),
path('lobby/<str:join_code>/participate', views.create_participant, name='create_participant'),
path('join', views.join_game, name='join_game'),
path('participant', views.create_participant, name='create_participant'),
]