createSubject and editSubject removed, upsertSubject added. Tasks and assignments removed from top-level tabs and now only accessible through Subjects -> Assignments -> Tasks. More styling in general.

This commit is contained in:
Fhj0607
2026-04-27 16:30:43 +02:00
parent da8a92b8c2
commit e8f7f45f11
18 changed files with 1729 additions and 1028 deletions

View File

@@ -1,3 +1,5 @@
import type { SubjectColor } from '@/lib/subjectColors';
export type Task = {
tId: string;
title: string;
@@ -26,4 +28,5 @@ export type Subject = {
isActive: boolean;
lastChanged: string;
uId: string;
color?: SubjectColor;
};