diff --git a/backend/services/contribution-service/src/api/controllers/health.controller.ts b/backend/services/contribution-service/src/api/controllers/health.controller.ts index 0e2f55da..186ec926 100644 --- a/backend/services/contribution-service/src/api/controllers/health.controller.ts +++ b/backend/services/contribution-service/src/api/controllers/health.controller.ts @@ -2,6 +2,7 @@ import { Controller, Get } from '@nestjs/common'; import { ApiTags, ApiOperation, ApiResponse } from '@nestjs/swagger'; import { PrismaService } from '../../infrastructure/persistence/prisma/prisma.service'; import { RedisService } from '../../infrastructure/redis/redis.service'; +import { Public } from '../../shared/guards/jwt-auth.guard'; interface HealthStatus { status: 'healthy' | 'unhealthy'; @@ -12,6 +13,7 @@ interface HealthStatus { }; } +@Public() @ApiTags('Health') @Controller('health') export class HealthController {