n8n-nodes-elearning-magic 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ Restart n8n after install.
|
|
|
11
11
|
|
|
12
12
|
## Configure
|
|
13
13
|
1) Add the **eLearning Magic** trigger node.
|
|
14
|
-
2) Webhook path
|
|
14
|
+
2) Webhook path auto-fills per workflow; after you save/activate, the node shows copyable Test/Production URLs in the Webhook URLs panel.
|
|
15
15
|
3) Create an **eLearning Magic Signing Secret** credential with your secret (signature is required).
|
|
16
16
|
4) Copy the webhook URL from the node and paste it into the eLearning Magic app when creating a connection (use the same secret).
|
|
17
17
|
5) Activate the workflow. Incoming events appear with the JSON body plus headers/query and a signature status flag.
|
|
@@ -46,7 +46,16 @@ class ElearningMagicTrigger {
|
|
|
46
46
|
restartWebhook: true,
|
|
47
47
|
},
|
|
48
48
|
],
|
|
49
|
-
properties: [
|
|
49
|
+
properties: [
|
|
50
|
+
{
|
|
51
|
+
displayName: 'Webhook Path',
|
|
52
|
+
name: 'path',
|
|
53
|
+
type: 'string',
|
|
54
|
+
default: '={{$workflow.id}}-elearning-magic',
|
|
55
|
+
description: 'Auto-generated per workflow; save/activate to see copyable Test/Production URLs below.',
|
|
56
|
+
noDataExpression: true,
|
|
57
|
+
},
|
|
58
|
+
],
|
|
50
59
|
};
|
|
51
60
|
}
|
|
52
61
|
async webhook() {
|