Skip to content

Commit 3aca549

Browse files
committed
Correctly changed the request type to post
1 parent 8fed907 commit 3aca549

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/server/server.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export class AuthSite {
8888

8989
this.app.get('/nxm', this.nxmForward.bind(this));
9090

91-
this.app.get('/webhook', express.json(), (req, res) => forumWebhook(req, res, this.logger));
91+
this.app.post('/webhook', express.json(), (req, res) => forumWebhook(req, res, this.logger));
9292

9393
this.app.get('*', (req, res) => res.redirect('/'));
9494

0 commit comments

Comments
 (0)