From 84b97bee8d19ab87b6485488ed8c2b4781b88f0c Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Tue, 22 Dec 2020 20:05:29 +0100 Subject: [PATCH] Updated the openapi descriptions for all status routes ref #49 --- src/controllers/StatusController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/StatusController.ts b/src/controllers/StatusController.ts index 9f83c50..b867429 100644 --- a/src/controllers/StatusController.ts +++ b/src/controllers/StatusController.ts @@ -6,7 +6,7 @@ import { getConnection } from 'typeorm'; export class StatusController { @Get() - @OpenAPI({ description: "Lists all tracks." }) + @OpenAPI({ description: "A very basic status/health endpoint that just checks if the database connection is available.
The available information depth will be expanded later." }) get() { let connection; try {