Add timewish routes to backend and frontend; implement routing and UI components for timewish settings

This commit is contained in:
Torsten Schulz (local)
2025-10-17 23:20:13 +02:00
parent 4fe6b27b8f
commit 876c2964dd
7 changed files with 750 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ import Calendar from '../views/Calendar.vue'
import Holidays from '../views/Holidays.vue'
import Profile from '../views/Profile.vue'
import PasswordChange from '../views/PasswordChange.vue'
import Timewish from '../views/Timewish.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
@@ -112,6 +113,12 @@ const router = createRouter({
component: PasswordChange,
meta: { requiresAuth: true }
},
{
path: '/settings/timewish',
name: 'settings-timewish',
component: Timewish,
meta: { requiresAuth: true }
},
{
path: '/entries',
name: 'entries',