From ab232b4671cfeccb55fbef330cf5dd38342413e9 Mon Sep 17 00:00:00 2001 From: f-w Date: Thu, 2 May 2024 09:09:43 -0700 Subject: [PATCH] add health to swagger --- src/api/health/health.controller.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/api/health/health.controller.ts b/src/api/health/health.controller.ts index 187eb1a73..d0e693e44 100644 --- a/src/api/health/health.controller.ts +++ b/src/api/health/health.controller.ts @@ -1,4 +1,5 @@ import { Controller, Get } from '@nestjs/common'; +import { ApiTags } from '@nestjs/swagger'; import { HealthCheck, HealthCheckService, @@ -9,6 +10,7 @@ import { ConfigHealthService } from './config-health.service'; import { RedisHealthService } from './redis-health.service'; @Controller('health') +@ApiTags('health') export class HealthController { constructor( private health: HealthCheckService,