View slack-notification-filter.js
var request = require('request'); | |
function shouldNotify(data) { | |
//replace this with the appropriate check/filter for you | |
return data.text.includes("should notify"); | |
} | |
module.exports = function (context, done) { | |
if (context.data.token == context.data.EXPECTED_TOKEN) { | |
if (shouldNotify(context.data)) { |