Fix/personal highscore page #50

Merged
KevinMidboe merged 2 commits from fix/personal-highscore-page into master 2020-10-11 16:49:18 +00:00
Showing only changes of commit 98e04ecd63 - Show all commits

View File

@@ -120,7 +120,7 @@ const byName = (req, res) => {
.then(highscore => res.send({
message: `Lottery winnings for name: ${ name }.`,
name: highscore.name,
wins: highscore.wins
highscore: highscore.wins
}))
}