Add timefix and vacation routes to backend; update frontend for new routes and page titles

This commit is contained in:
Torsten Schulz (local)
2025-10-17 15:54:30 +02:00
parent e95bb4cb76
commit b65a13d815
16 changed files with 1913 additions and 13 deletions

View File

@@ -10,6 +10,8 @@ import PasswordForgot from '../views/PasswordForgot.vue'
import PasswordReset from '../views/PasswordReset.vue'
import OAuthCallback from '../views/OAuthCallback.vue'
import WeekOverview from '../views/WeekOverview.vue'
import Timefix from '../views/Timefix.vue'
import Vacation from '../views/Vacation.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
@@ -56,6 +58,18 @@ const router = createRouter({
component: WeekOverview,
meta: { requiresAuth: true }
},
{
path: '/bookings/timefix',
name: 'timefix',
component: Timefix,
meta: { requiresAuth: true }
},
{
path: '/bookings/vacation',
name: 'vacation',
component: Vacation,
meta: { requiresAuth: true }
},
{
path: '/entries',
name: 'entries',