Skip to content

Commit f778191

Browse files
committed
Remove authMiddleware from event-status route in webhooks as it doesnt seem to exist. Parent route is already defined with the authentication middleware
1 parent 8177cfb commit f778191

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/routes/webhooks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ router.post('/:id/trigger-monthly', async (req, res) => {
322322
});
323323

324324
// Get status of event webhooks
325-
router.get('/event-status', authMiddleware, async (req, res) => {
325+
router.get('/event-status', async (req, res) => {
326326
try {
327327
const eventTypes = ['playback_started', 'playback_ended', 'media_recently_added'];
328328
const result = {};

0 commit comments

Comments
 (0)