From 90366c21e51d4c8a5b3c0f04e375c500632073d8 Mon Sep 17 00:00:00 2001 From: simplifique Date: Mon, 5 Jan 2026 20:32:26 -0500 Subject: [PATCH] fix: update health check response status message --- src/app.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.controller.ts b/src/app.controller.ts index 72518bd..7242992 100644 --- a/src/app.controller.ts +++ b/src/app.controller.ts @@ -14,7 +14,7 @@ export class AppController { @Get('health') @ApiOperation({ summary: 'Health check' }) healthCheck() { - return { status: 'simplifique' }; + return { status: 'SIMPLIFIQUE HOME CENTER' }; } }