Add app configure backups view

This commit is contained in:
Johannes Zellner
2025-02-26 17:22:28 +01:00
parent d153a734cb
commit 2dea8309a7
3 changed files with 153 additions and 1 deletions

View File

@@ -12,6 +12,7 @@ import Info from '../components/app/Info.vue';
import Security from '../components/app/Security.vue';
import Cron from '../components/app/Cron.vue';
import Resources from '../components/app/Resources.vue';
import Backups from '../components/app/Backups.vue';
import Repair from '../components/app/Repair.vue';
import Eventlog from '../components/app/Eventlog.vue';
import Updates from '../components/app/Updates.vue';
@@ -200,7 +201,7 @@ onBeforeUnmount(() => {
<div v-if="view === 'email'"></div>
<Cron :app="app" v-if="view === 'cron'"/>
<Updates :app="app" v-if="view === 'updates'"/>
<div v-if="view === 'backups'"></div>
<Backups :app="app" v-if="view === 'backups'"/>
<Repair :app="app" v-if="view === 'repair'"/>
<Eventlog :app="app" v-if="view === 'eventlog'"/>
<Uninstall :app="app" v-if="view === 'uninstall'"/>