working on timetracking module

This commit is contained in:
2025-08-15 14:35:56 +02:00
parent 84075b4634
commit 5a4028d774
7 changed files with 34 additions and 3 deletions

View File

@@ -79,7 +79,7 @@ public class Application {
new ProjectModule(registry, config).bindPath("/api/project").on(server);
new ProjectLegacy(registry,config).bindPath("/legacy/project").on(server);
new TaskModule(registry, config).bindPath("/api/task").on(server);
new TimeModule(registry, config).bindPath("/api/times").on(server);
new TimeModule(registry, config).bindPath("/api/time").on(server);
new WebHandler().bindPath("/").on(server);
server.setExecutor(Executors.newFixedThreadPool(threads));