9 lines
182 B
JavaScript
9 lines
182 B
JavaScript
export default async function(player) {
|
|
const { store } = this.context
|
|
|
|
await this.callApi('/api/deletePlayer', {
|
|
g: store.state.engine.user?.game,
|
|
id: player.id,
|
|
})
|
|
}
|