setup wizard init

This commit is contained in:
carodej
2020-06-29 10:09:42 +02:00
parent a2dfc627a7
commit aedc98cc8b
44 changed files with 2756 additions and 866 deletions
+11 -2
View File
@@ -188,8 +188,17 @@
fetchSubscriptionDetail() {
axios.get('/api/user/subscription')
.then(response => {
this.subscription = response.data
this.isLoading = false
if (response.status == 204) {
this.subscription = undefined
this.isLoading = false
}
if (response.status == 200) {
this.subscription = response.data
this.isLoading = false
}
})
}
},