nodered-grist/node-red-grist/server.js
2023-01-07 03:38:09 +01:00

11 lines
No EOL
298 B
JavaScript

module.exports = function(RED) {
function ServerNode(n) {
RED.nodes.createNode(this,n);
this.hostname = n.hostname;
this.port = n.port;
this.tlsEnabled = n.tlsEnabled;
this.apiKey = n.apiKey
}
RED.nodes.registerType("grist-server",ServerNode);
}