mirror of
https://github.com/apricote/Listory.git
synced 2026-02-06 17:57:03 +00:00
fix(api): missing OpenAPI route tags
This commit is contained in:
parent
290cc3d046
commit
d6af6f9cba
6 changed files with 10 additions and 3 deletions
|
|
@ -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(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue