chore: make server functions async
This commit is contained in:
parent
0299ed32f3
commit
f042651986
1 changed files with 11 additions and 16 deletions
|
@ -96,23 +96,18 @@ service.getAll()
|
|||
})
|
||||
|
||||
const newToken = ref(null)
|
||||
const createToken = () => {
|
||||
service.create({})
|
||||
.then(r => {
|
||||
tokens.value.push(r)
|
||||
newToken.value = r
|
||||
})
|
||||
const createToken = async () => {
|
||||
const r = await service.create({})
|
||||
tokens.value.push(r)
|
||||
newToken.value = r
|
||||
}
|
||||
|
||||
const deleteToken = (token: CaldavTokenModel) => {
|
||||
service.delete(token)
|
||||
// @ts-ignore
|
||||
.then(r => {
|
||||
success(r)
|
||||
// @ts-ignore
|
||||
const i = tokens.value.findIndex(v => v.id === token.id)
|
||||
// @ts-ignore
|
||||
tokens.value.splice(i, 1)
|
||||
})
|
||||
const deleteToken = async (token: CaldavTokenModel) => {
|
||||
const r = await service.delete(token)
|
||||
success(r)
|
||||
// @ts-ignore
|
||||
const i = tokens.value.findIndex(v => v.id === token.id)
|
||||
// @ts-ignore
|
||||
tokens.value.splice(i, 1)
|
||||
}
|
||||
</script>
|
||||
|
|
Loading…
Reference in a new issue