Skip to content

Commit d5167ec

Browse files
authored
fix(webhooks): make sure the health route is on /webhook (#120)
Signed-off-by: david <[email protected]>
1 parent ae72754 commit d5167ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/webhooks/src/router.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export function WebhookRouter(deps: Dependencies): express.Router {
2424
router.use(express.json());
2525
router.use(bearerToken());
2626

27-
router.get("/", (_req, res) => {
27+
router.get("/webhook", (_req, res) => {
2828
res.status(200).send("Webhook service is running");
2929
});
3030

0 commit comments

Comments
 (0)