This commit is contained in:
carodej
2020-07-14 10:34:42 +02:00
parent 2ae60003d6
commit c9d300769c
55 changed files with 1747 additions and 481 deletions

View File

@@ -95,11 +95,11 @@
return {
isLoading: false,
admin: {
name: '',
email: '',
name: 'Jane Doe',
email: 'howdy@hi5ve.digital',
avatar: undefined,
password: '',
password_confirmation: '',
password: 'vuefilemanager',
password_confirmation: 'vuefilemanager',
},
}
},
@@ -143,6 +143,10 @@
// Set login state
this.$store.commit('SET_AUTHORIZED', true)
if (localStorage.getItem('license') === 'Extended') {
this.$store.commit('SET_SAAS', true)
}
// Go to files page
this.$router.push({name: 'Dashboard'})