Make the berry endpoint use GET instead of POST

This commit is contained in:
2025-12-17 19:30:16 -07:00
parent 10389d8da9
commit 3bea2007e7
2 changed files with 3 additions and 3 deletions

View File

@@ -29,7 +29,7 @@ app.get('/launcher/loader/update-data', context =>
app.get('/berrydash/leaderboards/score', context =>
berrydashLeaderboardsHandler(context, 0)
)
app.post('/berrydash/leaderboards/berry', context =>
app.get('/berrydash/leaderboards/berry', context =>
berrydashLeaderboardsHandler(context, 1)
)
app.get('/berrydash/leaderboards/coin', context =>