Skip to content

Commit

Permalink
fix(cloud-function): fix fxa webhooks (#8706)
Browse files Browse the repository at this point in the history
Remove the trailing slash in the proxy route.
  • Loading branch information
fiji-flo committed Apr 25, 2023
1 parent 8485e5d commit d6421a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloud-function/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ router.all(
handleStripePlans
);
router.all(
["/api/*", "/admin-api/*", "/events/fxa/*", "/users/fxa/*"],
["/api/*", "/admin-api/*", "/events/fxa", "/users/fxa/*"],
requireOrigin(Origin.main),
proxyApi
);
Expand Down

0 comments on commit d6421a5

Please sign in to comment.