feature/34-status_health #36

Merged
niggl merged 2 commits from feature/34-status_health into dev 2020-12-18 22:02:36 +00:00
Showing only changes of commit a0a08f7724 - Show all commits

View File

@ -11,13 +11,12 @@ export class StatusController {
let connection; let connection;
try { try {
connection = getConnection(); connection = getConnection();
} } catch {
catch { throw new Error("sth is wrong, i can feel it....");
throw new Error("sth is wrong, i can feel it....")
} }
return { return {
"controllers": "✔", "controllers": "✔",
"database connection": "✔" "database connection": "✔"
} };
} }
} }