1
0
mirror of synced 2025-12-23 21:07:12 -05:00

update webhook response to not return fields, return 200

This commit is contained in:
Mike Surowiec
2021-04-06 11:23:53 -07:00
parent 0a8b108b2a
commit adb81ce5b5
2 changed files with 16 additions and 16 deletions

View File

@@ -44,7 +44,7 @@ router.post('/', async function postEvents (req, res, next) {
})
}
return res.status(201).json(fields)
return res.status(200).json({})
})
module.exports = router