We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 627d007 commit d3b6160Copy full SHA for d3b6160
app.js
@@ -77,13 +77,13 @@ function loadLeaderboard() {
77
}
78
79
function checkResults() {
80
- fetch("https://your-glitch-app.glitch.me/check-results", { method: "POST" })
+ fetch("https://year8-chess-tournament-backend.glitch.me/check-results", { method: "POST" })
81
.then(res => res.json())
82
.then(data => alert(`Updated games: ${data.updatedGames.length}`));
83
84
85
function startRound() {
86
- fetch("https://your-glitch-app.glitch.me/start-round", { method: "POST" })
+ fetch("https://year8-chess-tournament-backend.glitch.me/start-round", { method: "POST" })
87
88
.then(data => alert(`Started new round with ${data.pairings} games.`));
89
0 commit comments