Custom n8n node ‘Biz’ with actions ‘login’ and ‘sendFile’ generates separate core nodes. How can I nest these actions?
const config = { primary: ["build/login.js", "build/sendFile.js"] };
Custom n8n node ‘Biz’ with actions ‘login’ and ‘sendFile’ generates separate core nodes. How can I nest these actions?
const config = { primary: ["build/login.js", "build/sendFile.js"] };
hey, n8n doesnt really support nesting actions automatically. you have to chain them together or run them as separate nodes. might help to check the docs for workarounds if needed.