From bdcf6d06b2c4884c6e0519579f00717adf563760 Mon Sep 17 00:00:00 2001 From: Cailean Finn Date: Tue, 18 Jun 2024 21:01:33 +0100 Subject: [PATCH] print msg --- server.js | 1 + 1 file changed, 1 insertion(+) diff --git a/server.js b/server.js index 62a957f..4598b8d 100644 --- a/server.js +++ b/server.js @@ -59,6 +59,7 @@ app.get('/articles/:articleName', (req, res) => { // Webhook handler app.post('/api', (req, res) => { + console.log('hit!'); const signature = req.headers['x-gitea-signature']; const payload = JSON.stringify(req.body);