set storage driver via admin

This commit is contained in:
Čarodej
2022-03-08 09:42:18 +01:00
parent c0ca83193f
commit 4e2155b75a
9 changed files with 539 additions and 15 deletions

View File

@@ -42,8 +42,8 @@ export default {
route: 'AppIndex',
},
{
title: this.$t('admin_settings.tabs.email'),
route: 'AppEmail',
title: this.$t('Environment'),
route: 'AppEnvironment',
},
{
title: this.$t('Server'),
@@ -53,7 +53,9 @@ export default {
}
},
mounted() {
this.$router.push({ name: 'AppOthers' })
if (this.$route.path === '/admin/settings') {
this.$router.push({ name: 'AppOthers' })
}
},
}
</script>