mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-27 18:40:39 +00:00
setup wizard init
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
})
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user