fix: update health check response status message
All checks were successful
Deploy NestJS API / build-and-push-deploy (push) Successful in 2m10s

This commit is contained in:
2026-01-05 20:32:26 -05:00
parent bda9f0f13b
commit 90366c21e5

View File

@@ -14,7 +14,7 @@ export class AppController {
@Get('health')
@ApiOperation({ summary: 'Health check' })
healthCheck() {
return { status: 'simplifique' };
return { status: 'SIMPLIFIQUE HOME CENTER' };
}
}