implemented task/:id/view

This commit is contained in:
2025-07-22 23:51:37 +02:00
parent b03b0683bc
commit c2eae076f4
11 changed files with 213 additions and 14 deletions

View File

@@ -155,7 +155,7 @@ CREATE TABLE IF NOT EXISTS {0} ( {1} VARCHAR(255) PRIMARY KEY, {2} VARCHAR(255)
if (result == null) throw UmbrellaException.notFound("No project found for id {0}",projectId);
return result;
} catch (SQLException e) {
throw new UmbrellaException(HTTP_SERVER_ERROR,"Failed to load items from database");
throw new UmbrellaException(HTTP_SERVER_ERROR,"Failed to load project from database");
}
}