Add random quiz version selection and update webhook integration

This commit is contained in:
2025-01-30 16:58:41 +02:00
parent f8bb71a184
commit 823c27e5ca
3 changed files with 28 additions and 19 deletions

View File

@@ -42,7 +42,7 @@ function initResultsPage() {
}
function loadQuestions(version) {
fetch('../data/questions.json')
fetch('data/questions.json')
.then(response => response.json())
.then(data => {
const questions = data.quizzes[version];