Skip to content

Commit

Permalink
fix(webhooks): make sure the health route is on /webhook
Browse files Browse the repository at this point in the history
Signed-off-by: david <[email protected]>
  • Loading branch information
daywiss committed Nov 27, 2024
1 parent ae72754 commit a5a3556
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/webhooks/src/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export function WebhookRouter(deps: Dependencies): express.Router {
router.use(express.json());
router.use(bearerToken());

router.get("/", (_req, res) => {
router.get("/webhook", (_req, res) => {
res.status(200).send("Webhook service is running");
});

Expand Down

0 comments on commit a5a3556

Please sign in to comment.