UNPKG

node-red-contrib-spark

Version:

Node-RED Nodes to integrate with the Cisco Webex Teams API

18 lines (14 loc) 307 B
module.exports = function(RED) { 'use strict'; function SparkAuthConfigNode(n) { RED.nodes.createNode(this, n); this.name = n.name; } RED.nodes.registerType('Webex Teams Authentication', SparkAuthConfigNode, { credentials: { token: { type: 'text' } } }); };