UNPKG

@cgignite/ignite-auth

Version:

Auth node allows you to integrate security withing your Ignite APIs and apps

14 lines 321 B
module.exports = function (RED) { function basicConfig(n) { RED.nodes.createNode(this, n); this.name = n.name; this.username = n.username; } RED.nodes.registerType("basic-config", basicConfig, { credentials: { password: { value: "" }, } }); };