Some falukant fixes, added undeground ui - no save right now, changed menu (and verification)

This commit is contained in:
Torsten Schulz
2025-07-17 14:28:52 +02:00
parent fceea5b7fb
commit 89cf12a7a8
33 changed files with 1010 additions and 423 deletions

View File

@@ -12,6 +12,7 @@ import BankView from '../views/falukant/BankView.vue';
import DirectorView from '../views/falukant/DirectorView.vue';
import HealthView from '../views/falukant/HealthView.vue';
import PoliticsView from '../views/falukant/PoliticsView.vue';
import UndergroundView from '../views/falukant/UndergroundView.vue';
const falukantRoutes = [
{
@@ -98,6 +99,12 @@ const falukantRoutes = [
component: PoliticsView,
meta: { requiresAuth: true }
},
{
path: '/falukant/darknet',
name: 'UndergroundView',
component: UndergroundView,
meta: { requiresAuth: true }
},
];
export default falukantRoutes;