feat: migrate legacy long-lived database records

This commit is contained in:
2026-07-27 01:12:00 +00:00
parent d8220a18b3
commit 89013272e1
39 changed files with 2495 additions and 124 deletions
+9
View File
@@ -35,6 +35,7 @@ import NpcListView from '../views/NpcListView.vue';
import NationListView from '../views/NationListView.vue';
import GeneralListView from '../views/GeneralListView.vue';
import TrafficView from '../views/TrafficView.vue';
import PastPlaysView from '../views/PastPlaysView.vue';
import { useSessionStore } from '../stores/session';
import { trpc } from '../utils/trpc';
@@ -321,6 +322,14 @@ const routes = [
requiresGeneral: true,
},
},
{
path: '/past-plays',
name: 'past-plays',
component: PastPlaysView,
meta: {
requiresAuth: true,
},
},
{
path: '/survey',
name: 'survey',