fix(api): missing OpenAPI route tags

This commit is contained in:
Julian Tölle 2022-07-12 20:32:55 +02:00
parent 290cc3d046
commit d6af6f9cba
6 changed files with 10 additions and 3 deletions

View file

@ -1,5 +1,6 @@
import { Controller, Get } from "@nestjs/common";
import { ConfigService } from "@nestjs/config";
import { ApiTags } from "@nestjs/swagger";
import {
HealthCheck,
HealthCheckResult,
@ -9,6 +10,7 @@ import {
} from "@nestjs/terminus";
import { configureScope, Scope } from "@sentry/node";
@ApiTags("health")
@Controller("api/v1/health")
export class HealthCheckController {
constructor(