feat(f3): calculate round scores and move to reveal phase
All checks were successful
CI / test-and-quality (push) Successful in 57s
CI / test-and-quality (pull_request) Successful in 59s

This commit is contained in:
2026-02-27 17:01:36 +01:00
parent 49e9d1be41
commit 1017ed0c4c
4 changed files with 220 additions and 1 deletions

View File

@@ -25,5 +25,10 @@ urlpatterns = [
views.submit_guess,
name="submit_guess",
),
path(
"sessions/<str:code>/questions/<int:round_question_id>/scores/calculate",
views.calculate_scores,
name="calculate_scores",
),
]