From e9c7d8d282bba3b37ce4632c71979cb00708518a Mon Sep 17 00:00:00 2001 From: joelson Date: Mon, 5 Jan 2026 14:43:23 -0300 Subject: [PATCH] chore: Update health check endpoint status message. --- src/app.controller.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app.controller.ts b/src/app.controller.ts index 470a286..1c1c513 100644 --- a/src/app.controller.ts +++ b/src/app.controller.ts @@ -11,10 +11,10 @@ export class AppController { return { version: APP_VERSION }; } - @Get('health') +@Get('health') @ApiOperation({ summary: 'Health check' }) healthCheck() { - return { status: 'ok' }; + return { status: ':ok 2 ' }; } }