From d0337c5a67be19ed119c4e5ec8e502518eddaae1 Mon Sep 17 00:00:00 2001 From: Joe Arndt Date: Mon, 23 Feb 2026 22:40:17 -0600 Subject: [PATCH] updated healthcheck to include name --- src/healthcheck.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/healthcheck.controller.ts b/src/healthcheck.controller.ts index bca0907..1a36449 100644 --- a/src/healthcheck.controller.ts +++ b/src/healthcheck.controller.ts @@ -4,6 +4,6 @@ import { Controller, Get } from '@nestjs/common'; export class HealthcheckController { @Get('healthcheck') health() { - return { status: 'healthy' }; + return { status: 'healthy', message: 'common-cents-api' }; } }