UNPKG

prisme-flow

Version:

prisme platform flow engine

23 lines (19 loc) 489 B
/** * Created by prisme.io on 09/06/2017. */ module.exports = function (RED) { function BotAuthorized (config) { RED.nodes.createNode(this, config) var node = this this.on('input', function (msg) { var chatContext = msg.chat() // check if (chatContext != null && chatContext.get('authorized')) { node.send([msg, null]) } else { node.send([null, msg]) } }) } RED.nodes.registerType('bot-authorized', BotAuthorized) }