should be all good now (and added api status notifications)
Some checks failed
Deploy Backend / deploy (push) Successful in 3m38s
Deploy Website / deploy (push) Has been cancelled

This commit is contained in:
Lee
2024-10-16 08:15:11 +01:00
parent 1eed0e1e99
commit cb7143ed3d
5 changed files with 37 additions and 7 deletions

View File

@ -12,6 +12,13 @@ export default class AppController {
};
}
@Get("/health")
public async getHealth() {
return {
status: "OK",
};
}
@Get("/statistics")
public async getStatistics() {
return await AppService.getAppStatistics();