Add security app configure view

This commit is contained in:
Johannes Zellner
2025-02-22 11:44:51 +01:00
parent 7da590ca76
commit 21c1d3c191
2 changed files with 76 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ const t = i18n.t;
import { ref, onMounted, onBeforeUnmount, useTemplateRef, computed } from 'vue';
import { Button, ButtonGroup, TabView } from 'pankow';
import Info from '../components/app/Info.vue';
import Security from '../components/app/Security.vue';
import Cron from '../components/app/Cron.vue';
import Eventlog from '../components/app/Eventlog.vue';
import Updates from '../components/app/Updates.vue';
@@ -178,7 +179,7 @@ onBeforeUnmount(() => {
<template #services></template>
<template #storage></template>
<template #graphs></template>
<template #security></template>
<template #security><Security :app="app"/></template>
<template #email></template>
<template #cron><Cron :app="app"/></template>
<template #updates><Updates :app="app"/></template>