Just console logs the request from plex webhook. This was created just to test webhooks for plex and will later handle input

This commit is contained in:
2017-05-10 20:00:51 -06:00
parent 3a83b98df0
commit 8d16a4952f

14
src/plex/hookDump.js Normal file
View File

@@ -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;