From 9857f06ce383c759a0ae148a37381bedc0e58f70 Mon Sep 17 00:00:00 2001 From: Steve Reis <stevereis93@gmail.com> Date: Mon, 2 May 2022 13:53:47 +0200 Subject: [PATCH] fix: Change status path name --- api/src/main/app.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/main/app.controller.ts b/api/src/main/app.controller.ts index 1d102bb..5f072a1 100644 --- a/api/src/main/app.controller.ts +++ b/api/src/main/app.controller.ts @@ -5,7 +5,7 @@ import { AppService } from './app.service'; export class AppController { constructor(private readonly appService: AppService) {} - @Get() + @Get('status') getStatus(): string { return this.appService.getStatus(); } -- GitLab