added error message
Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
@@ -21,6 +21,7 @@ import static de.srsoftware.umbrella.messagebus.MessageBus.messageBus;
|
|||||||
import static de.srsoftware.umbrella.messagebus.events.Event.EventType.CREATE;
|
import static de.srsoftware.umbrella.messagebus.events.Event.EventType.CREATE;
|
||||||
import static de.srsoftware.umbrella.project.Constants.PERMISSIONS;
|
import static de.srsoftware.umbrella.project.Constants.PERMISSIONS;
|
||||||
import static de.srsoftware.umbrella.task.Constants.*;
|
import static de.srsoftware.umbrella.task.Constants.*;
|
||||||
|
import static java.lang.System.Logger.Level.ERROR;
|
||||||
import static java.lang.System.Logger.Level.WARNING;
|
import static java.lang.System.Logger.Level.WARNING;
|
||||||
import static java.net.URLDecoder.decode;
|
import static java.net.URLDecoder.decode;
|
||||||
import static java.nio.charset.StandardCharsets.UTF_8;
|
import static java.nio.charset.StandardCharsets.UTF_8;
|
||||||
@@ -198,6 +199,7 @@ public class TaskModule extends BaseHandler implements TaskService {
|
|||||||
var projectTasks = taskDb.listProjectTasks(project.id(),null, false);
|
var projectTasks = taskDb.listProjectTasks(project.id(),null, false);
|
||||||
var mapped = projectTasks.values().stream().collect(Collectors.toMap(Task::id,Task::toMap));
|
var mapped = projectTasks.values().stream().collect(Collectors.toMap(Task::id,Task::toMap));
|
||||||
var roots = new HashMap<Long,Map<String,Object>>();
|
var roots = new HashMap<Long,Map<String,Object>>();
|
||||||
|
LOG.log(ERROR,"getParentCandidates not fully functional");
|
||||||
for (var map : mapped.values()){
|
for (var map : mapped.values()){
|
||||||
if (!(map.get(ID) instanceof Long id)) continue;
|
if (!(map.get(ID) instanceof Long id)) continue;
|
||||||
if (id == taskId) continue;
|
if (id == taskId) continue;
|
||||||
|
|||||||
Reference in New Issue
Block a user