initial commit
This commit is contained in:
parent
4ecbaa612a
commit
3b102ee4f6
9 changed files with 238 additions and 2 deletions
11
node-red-grist/server.js
Normal file
11
node-red-grist/server.js
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
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("server",ServerNode);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue