initial commit
This commit is contained in:
parent
4ecbaa612a
commit
3b102ee4f6
9 changed files with 238 additions and 2 deletions
8
node-red-grist/document.js
Normal file
8
node-red-grist/document.js
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
module.exports = function(RED) {
|
||||
function DocumentNode(n) {
|
||||
RED.nodes.createNode(this,n);
|
||||
this.docid = n.docid;
|
||||
this.name = n.name;
|
||||
}
|
||||
RED.nodes.registerType("document",DocumentNode);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue