This commit is contained in:
Marek Lenczewski
2026-03-31 18:09:15 +02:00
parent b6a4548732
commit b998940caa
48 changed files with 717 additions and 816 deletions

View File

@@ -5,7 +5,7 @@
- Wird verwendet um Aufgaben anzuzeigen
- Entity
- name - Name der Aufgabe
- status - Status (active, done), null is disabled
- status - Status der Aufgabe (active, done)
- date - Deadline, null for no deadline
- schema - schemaId, null no schema
- category - categoryId, null no category
@@ -15,6 +15,7 @@
- create() - Task erstellen
- update(id) - Task aktualisieren
- delete(id) - Task entfernen
- toggle(id) - Status switchen (active, done)
- Werden durch Schemas erstellt
-
@@ -36,14 +37,15 @@
- Template um Aufgaben zu erstellen
- Entity
- name - Name für erstellte Aufgaben
- status - Status für erstellte Aufgaben
- status - Status für Schema (active, disabled)
- category - Kategorie für erstellte Aufgaben
- type
- single - Einmal erstellt, schema = null
- repeat - Wiederholt erstellt, schema = id
- start - Startdatum für type=repeat
- end - Enddatum für type=repeat
- days - Tage für Muster für die Erstellung der Aufgaben
- daily - Für jeden Tag erstellt, schema = id
- custom - Benutzerdefiniert erstellt, schema = id
- start - Startdatum für type=daily,custom
- end - Enddatum für type=daily, custom
- days - Tage für type=custom
- week - Array für Wochentage (1-7)
- month - Array für Monatstage (1-31)
- year - Array für Jahrestage (1-365/366)