Feat/controllers - refactor entire backend and new admin interface #75

Merged
KevinMidboe merged 117 commits from feat/controllers into master 2021-02-19 00:19:52 +00:00
Showing only changes of commit e89952d965 - Show all commits

View File

@@ -32,7 +32,7 @@ export default {
};
},
async mounted() {
return fetch(`/api/history/by-wins?limit=${limit}`)
return fetch(`/api/history/by-wins?limit=${this.limit}`)
.then(resp => resp.json())
.then(response => {
this.highscore = response.winners;