feat(mobile-navigation-improvements): Complete US-208 - Actualizare Router cu noile rute
Implemented by Ralph autonomous loop. Iteration: 3 Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -53,6 +53,18 @@ const routes = [
|
||||
name: 'ServerLogs',
|
||||
component: () => import('@reports/views/ServerLogsView.vue'),
|
||||
meta: { requiresAuth: true, title: 'Server Logs - ROA2WEB' }
|
||||
},
|
||||
{
|
||||
path: 'maturity-analysis',
|
||||
name: 'MaturityAnalysis',
|
||||
component: () => import('@reports/views/MaturityAnalysisView.vue'),
|
||||
meta: { requiresAuth: true, title: 'Analiză Scadențe - ROA2WEB' }
|
||||
},
|
||||
{
|
||||
path: 'detailed-invoices',
|
||||
name: 'DetailedInvoices',
|
||||
component: () => import('@reports/views/DetailedInvoicesView.vue'),
|
||||
meta: { requiresAuth: true, title: 'Facturi Detaliate - ROA2WEB' }
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -104,6 +116,20 @@ const routes = [
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/settings',
|
||||
name: 'SettingsHub',
|
||||
component: () => import('@/modules/reports/ReportsLayout.vue'),
|
||||
meta: { requiresAuth: true },
|
||||
children: [
|
||||
{
|
||||
path: '',
|
||||
name: 'Settings',
|
||||
component: () => import('@reports/views/SettingsHubView.vue'),
|
||||
meta: { requiresAuth: true, title: 'Setări - ROA2WEB' }
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/',
|
||||
redirect: '/reports/dashboard'
|
||||
|
||||
Reference in New Issue
Block a user