- Docs for various nodes updated (closes #9)

- Fixed some nodes not matching how their docs describe how they function (such as node configuration should always take precedence over inputs)
This commit is contained in:
2021-09-02 10:51:47 -06:00
parent b698389491
commit 4bd2dce434
24 changed files with 184 additions and 184 deletions
+7 -1
View File
@@ -55,7 +55,13 @@ module.exports = function(RED) {
{ $userId: msg.userId },
);
node.server.matrixClient.http
.authedRequest(undefined, 'POST', path, undefined, { "erase": (msg.erase || false) }, { prefix: '' })
.authedRequest(
undefined,
'POST',
path,
undefined,
{"erase": (msg.erase || false)},
{"prefix": '' })
.then(function(e){
msg.payload = e;
node.send([msg, null]);