Updated the openapi descriptions for all status routes

ref #49
This commit is contained in:
Nicolai Ort 2020-12-22 20:05:29 +01:00
parent 767841d405
commit 84b97bee8d
1 changed files with 1 additions and 1 deletions

View File

@ -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. <br> The available information depth will be expanded later." })
get() {
let connection;
try {