From 8d16a4952fc20feb8f68e9559e2ca7ad07b21b09 Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Wed, 10 May 2017 20:00:51 -0600 Subject: [PATCH] Just console logs the request from plex webhook. This was created just to test webhooks for plex and will later handle input --- src/plex/hookDump.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/plex/hookDump.js diff --git a/src/plex/hookDump.js b/src/plex/hookDump.js new file mode 100644 index 0000000..1761757 --- /dev/null +++ b/src/plex/hookDump.js @@ -0,0 +1,14 @@ +/* +* @Author: KevinMidboe +* @Date: 2017-05-03 23:26:46 +* @Last Modified by: KevinMidboe +* @Last Modified time: 2017-05-03 23:27:59 +*/ + +const configuration = require('src/config/configuration').getInstance(); + +function hookDumpController(req, res) { + console.log(req); +} + +module.exports = hookDumpController; \ No newline at end of file