Add sick routes to backend and frontend; update routing and UI components for sickness tracking

This commit is contained in:
Torsten Schulz (local)
2025-10-17 21:24:00 +02:00
parent b65a13d815
commit ca4002f402
11 changed files with 735 additions and 6 deletions

View File

@@ -12,6 +12,7 @@ import OAuthCallback from '../views/OAuthCallback.vue'
import WeekOverview from '../views/WeekOverview.vue'
import Timefix from '../views/Timefix.vue'
import Vacation from '../views/Vacation.vue'
import Sick from '../views/Sick.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
@@ -70,6 +71,12 @@ const router = createRouter({
component: Vacation,
meta: { requiresAuth: true }
},
{
path: '/bookings/sick',
name: 'sick',
component: Sick,
meta: { requiresAuth: true }
},
{
path: '/entries',
name: 'entries',