Add documentation

This commit is contained in:
borovlioff
2024-12-31 19:05:12 +03:00
parent e771059809
commit b0d6c1382b
13 changed files with 681 additions and 16 deletions

View File

@@ -50,7 +50,6 @@ module.exports = function (RED) {
commentTo: commentTo !== "" ? commentTo : undefined,
topMsgId: topMsgId !== topMsgId ? commentTo : undefined,
};
console.log("🚀 ~ file: send-message.js:60 ~ params:", params)
if (schedule) {
params.schedule = new Date(schedule).getTime() / 1000;
@@ -77,6 +76,7 @@ module.exports = function (RED) {
}
});
}
RED.nodes.registerType('send-message', SendMessage);