- Update examples README to make things much easier to find

- Added examples for every node
- Fixed User Settings node requiring a roomId when it's not needed
- Fixed the documentation for Upload File node
- Get User node had unused config code that has been removed
This commit is contained in:
2024-09-18 15:21:13 -06:00
parent 9e3b66f4aa
commit 45ff930518
21 changed files with 1582 additions and 403 deletions
-8
View File
@@ -40,14 +40,6 @@ module.exports = function(RED) {
return;
}
msg.topic = node.roomId || msg.topic;
if(!msg.topic) {
msg.error = "Room must be specified in msg.topic or in configuration";
node.error(msg.error, msg);
node.send([null, msg]);
return;
}
let getterErrors = {},
setterErrors = {};