2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 06:47:20 +08:00
Files
panel/web/src/views/apps/fail2ban/route.ts

23 lines
460 B
Go

import type { RouteType } from '~/types/router'
const Layout = () => import('@/layout/IndexView.vue')
export default {
name: 'fail2ban',
path: '/apps/fail2ban',
component: Layout,
isHidden: true,
children: [
{
name: 'apps-fail2ban-index',
path: '',
component: () => import('./IndexView.vue'),
meta: {
title: 'Fail2ban Manager',
role: ['admin'],
requireAuth: true
}
}
]
} as RouteType