feat(frontend): restore account oauth and yearbook flows

This commit is contained in:
2026-07-25 16:35:49 +00:00
parent f8bd3b4138
commit 11a559f169
8 changed files with 1198 additions and 3 deletions
+12
View File
@@ -3,6 +3,8 @@ import HomeView from '../views/HomeView.vue';
import LobbyView from '../views/LobbyView.vue';
import AdminView from '../views/AdminView.vue';
import ServerOperationsView from '../views/ServerOperationsView.vue';
import AccountView from '../views/AccountView.vue';
import OAuthCallbackView from '../views/OAuthCallbackView.vue';
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
@@ -27,6 +29,16 @@ const router = createRouter({
name: 'server-operations',
component: ServerOperationsView,
},
{
path: '/account',
name: 'account',
component: AccountView,
},
{
path: '/oauth/callback',
name: 'oauth-callback',
component: OAuthCallbackView,
},
],
});