9 lines
246 B
JavaScript
9 lines
246 B
JavaScript
module.exports = function(RED) {
|
|
function GroupRecipientNode(n) {
|
|
RED.nodes.createNode(this, n);
|
|
this.groupId = n.groupId;
|
|
this.name = n.name;
|
|
}
|
|
RED.nodes.registerType("group-recipient", GroupRecipientNode);
|
|
}
|