added total time spent functionality for tasks and updated dashboard to display upcoming, uncompleted tasks sorted by date ascending

This commit is contained in:
Chris Sanden
2026-05-02 17:44:11 +02:00
parent 387ab2833d
commit b437643475
6 changed files with 926 additions and 249 deletions

View File

@@ -4,6 +4,7 @@ const notificationKey = (aId: string) => `assignment_notification_${aId}`;
const activeSprintKey = 'active_sprint';
export type ActiveSprint = {
sessionId: string,
taskId: string;
durationSeconds: number;
endTime: number;

View File

@@ -8,6 +8,7 @@ export type Task = {
lastChanged: string;
uId: string;
aId: string;
totalTimeInSeconds: number;
};
export type Assignment = {