node-red-contrib-agilite
Advanced tools
Comparing version 5.1.1 to 5.1.2
module.exports = function(RED) { | ||
function AgiliteLogin(config) { | ||
RED.nodes.createNode(this,config); | ||
this.server = config.server; | ||
this.apiKey = this.credentials.apiKey; | ||
RED.nodes.createNode(this, config); | ||
this.serverType = config.serverType; | ||
this.server = config.server; | ||
this.username = config.username; | ||
this.apiKey = this.credentials.apiKey; | ||
this.name = config.name; | ||
} | ||
RED.nodes.registerType("agilite-login", AgiliteLogin,{ | ||
credentials: { | ||
apiKey: {type:"password"} | ||
} | ||
credentials: {apiKey: {type:"password"}} | ||
}); | ||
} |
{ | ||
"name": "node-red-contrib-agilite", | ||
"license": "Apache-2.0", | ||
"version": "5.1.1", | ||
"license": "MIT", | ||
"version": "5.1.2", | ||
"description": "Node-RED nodes to integrate with Agilit-e cloud or Agilit-e on-prem", | ||
@@ -6,0 +6,0 @@ "homepage": "https://portal.agilite.io", |
### node-red Agilit-e | ||
================== | ||
The set of nodes in this Node-RED module allow for easy integration into Agilit-e http://portal.agilite.io | ||
The set of nodes in this Node-RED module allow for easy integration into Agilit-e https://portal.agilite.io | ||
# Author | ||
John Jardin (CTO of Agilit-e) | ||
John Jardin (MD of Agilit-e) | ||
# License | ||
Apache-2.0 | ||
MIT |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
72328
1069