feat: restore global nation and general directories

This commit is contained in:
2026-07-26 05:18:30 +00:00
parent 8fac491c9d
commit 52da582b74
11 changed files with 1727 additions and 1 deletions
+14
View File
@@ -32,6 +32,8 @@ import TroopView from '../views/TroopView.vue';
import YearbookView from '../views/YearbookView.vue';
import NationBettingView from '../views/NationBettingView.vue';
import NpcListView from '../views/NpcListView.vue';
import NationListView from '../views/NationListView.vue';
import GeneralListView from '../views/GeneralListView.vue';
import { useSessionStore } from '../stores/session';
const routes = [
@@ -106,6 +108,18 @@ const routes = [
component: GlobalInfoView,
meta: { requiresAuth: true, requiresGeneral: true },
},
{
path: '/nation-list',
name: 'nation-list',
component: NationListView,
meta: { requiresAuth: true, requiresGeneral: true },
},
{
path: '/general-list',
name: 'general-list',
component: GeneralListView,
meta: { requiresAuth: true, requiresGeneral: true },
},
{
path: '/current-city',
name: 'current-city',