Skip to content

Commit

Permalink
fix(api): Restore / root endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
alepefe committed Nov 4, 2024
1 parent 785fcc9 commit ba12fa2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions api/src/app.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ export class AppController {
private readonly appService: AppService,
) {}

@Public()
@Get('/')
public root(): ControllerResponse {
return null;
}

@Public()
@Get('/health')
@HealthCheck({ noCache: true })
Expand Down

0 comments on commit ba12fa2

Please sign in to comment.