wip: notifications

This commit is contained in:
Nikolai Giman
2026-03-22 20:01:05 +01:00
parent 5c4859743e
commit c403673f4d
108 changed files with 5662 additions and 582 deletions
+2
View File
@@ -3,4 +3,6 @@ import type { Edge, Node } from '@vue-flow/core'
export type GraphStore = {
nodes: Node[];
edges: Edge[];
allNodes: Node[];
allEdges: Edge[];
};
+2 -1
View File
@@ -1,4 +1,4 @@
import type { GoalItem, KanbanColumnItem, KanbanResponseTasksForColumn } from 'taskview-api'
import type { GoalItem, KanbanColumnItem, KanbanFilters, KanbanResponseTasksForColumn } from 'taskview-api'
export type KanbanStoreState = {
tasksData: {
@@ -7,4 +7,5 @@ export type KanbanStoreState = {
// TODO: rename to columns
statuses: KanbanColumnItem[];
goalId: GoalItem['id'];
filters: KanbanFilters;
};