added a simple health route

ref #34
This commit is contained in:
Nicolai Ort 2020-12-18 22:58:24 +01:00
parent 3e940c2db5
commit cea5993049
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
import { Get, JsonController } from 'routing-controllers';
import { OpenAPI } from 'routing-controllers-openapi';
import { getConnection } from 'typeorm';
@JsonController('/status')
export class StatusController {
@Get()
@OpenAPI({ description: "Lists all tracks." })
get() {
let connection;
try {
connection = getConnection();
}
catch {
throw new Error("sth is wrong, i can feel it....")
}
return {
"controllers": "✔",
"database connection": "✔"
}
}
}