From 7b43387a0c83e4cc9a70803cd3c850f6d640bc25 Mon Sep 17 00:00:00 2001 From: M1000fr Date: Fri, 13 Dec 2024 18:00:55 +0100 Subject: [PATCH] refactor: Update ping response message format to include the current date and time in French locale --- 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 a6f02b6..c6c698f 100644 --- a/src/app.controller.ts +++ b/src/app.controller.ts @@ -9,7 +9,7 @@ export class AppController { @Get("ping") pong() { return { - message: "pong", + message: new Date().toLocaleString("fr"), }; } }