feat: Linear-style Task Board mit Drag&Drop
CI - Build & Test / Backend (.NET) (push) Successful in 32s
CI - Build & Test / Frontend (Vue/TS) (push) Successful in 19s
CI - Build & Test / Security Check (push) Successful in 3s

This commit is contained in:
2026-06-18 21:34:07 +02:00
parent c496608c86
commit 5e7d074593
9 changed files with 1177 additions and 16 deletions
+2 -1
View File
@@ -11,6 +11,7 @@ import IncidentsView from './views/IncidentsView.vue'
import CalendarView from './views/CalendarView.vue'
import NexusLayout from './layouts/NexusLayout.vue'
import FlowBoard from './views/Dashboard/FlowBoard.vue'
import TaskBoardView from './views/TaskBoardView.vue'
const routes = [
{ path: '/login', name: 'Login', component: LoginView, meta: { public: true } },
@@ -33,7 +34,7 @@ const routes = [
{ path: '/calendar', name: 'Calendar', component: CalendarView },
{ path: '/projects', name: 'Projects', component: { template: '' } },
{ path: '/projects/:id', name: 'ProjectDetail', component: ProjectDetailView },
{ path: '/tasks', name: 'Task Board', component: { template: '' } },
{ path: '/tasks', name: 'Task Board', component: TaskBoardView },
{ path: '/agents', name: 'Agents', component: AgentsIndexView },
{ path: '/models', name: 'Models', component: { template: '' } },
{ path: '/activity', name: 'Activity', component: { template: '' } },