knowyt/client/src/plugins/engine/fetchGames.js
2022-03-16 17:10:50 +01:00

14 lines
281 B
JavaScript

export default async function() {
const { store } = this.context
try {
const response = await this.callApi('/api/games')
store.commit('engine/setGames', response.data)
} catch(e) {
store.commit('engine/setGames', undefined)
return false
}
return true
}