Skip to content

Commit 5b10488

Browse files
committed
fix: correct endpoint
1 parent 9be109f commit 5b10488

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/api/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ const app = new Hono<HonoEnv>()
202202

203203
return c.json(session);
204204
})
205-
.on(["POST", "GET"], "/auth", (c) => {
205+
.on(["POST", "GET"], "/auth/*", (c) => {
206206
return c.get("auth").handler(c.req.raw);
207207
})
208208
.on(["POST"], "/integrations/github/webhooks", (c) => {

0 commit comments

Comments
 (0)