From a7229d1d9d4bfcfb6d14ddad81885122ed57cbad Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 2 Oct 2023 10:35:02 +0200 Subject: [PATCH] Create and simple listing of all tasks --- backend/.idea/workspace.xml | 76 ++++--- .../core/api/controller/TaskController.java | 72 +++++++ .../timemanager/tasks/TaskEntityInfo.java | 11 + .../java/core/entities/timemanager/Task.java | 5 +- .../core/entities/timemanager/Taskgroup.java | 8 + .../main/java/core/services/TaskService.java | 28 +++ openapi.yaml | 202 +++++++++++++++++- 7 files changed, 376 insertions(+), 26 deletions(-) create mode 100644 backend/src/main/java/core/api/controller/TaskController.java diff --git a/backend/.idea/workspace.xml b/backend/.idea/workspace.xml index fe49c14..76f6eff 100644 --- a/backend/.idea/workspace.xml +++ b/backend/.idea/workspace.xml @@ -4,17 +4,34 @@