n8n-nodes-elearning-magic 0.1.9 → 0.1.11
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.
|
@@ -58,6 +58,28 @@ class ElearningMagicTrigger {
|
|
|
58
58
|
},
|
|
59
59
|
],
|
|
60
60
|
properties: [
|
|
61
|
+
{
|
|
62
|
+
displayName: '<strong>📌 Webhook URL for your eLearning Magic App:</strong><br><br>' +
|
|
63
|
+
'The production URL below is auto-generated from your n8n base URL (WEBHOOK_URL / N8N_WEBHOOK_URL / N8N_HOST) and the Path value.',
|
|
64
|
+
name: 'webhookUrlNotice',
|
|
65
|
+
type: 'notice',
|
|
66
|
+
default: '',
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
displayName: 'Production Webhook URL (auto-generated)',
|
|
70
|
+
name: 'productionWebhookUrl',
|
|
71
|
+
type: 'string',
|
|
72
|
+
default: '={{ ' +
|
|
73
|
+
'((($env.WEBHOOK_URL || $env.N8N_WEBHOOK_URL) || ' +
|
|
74
|
+
"($env.N8N_HOST ? ('https://' + $env.N8N_HOST + ($env.N8N_PORT ? (':' + $env.N8N_PORT) : '')) : 'https://YOUR-N8N-INSTANCE'))" +
|
|
75
|
+
" + '/webhook/' + $parameter['path']" +
|
|
76
|
+
' ) }}',
|
|
77
|
+
description: 'Copy this URL into the eLearning Magic app when configuring the connection. Change Path to update it.',
|
|
78
|
+
placeholder: 'https://your-n8n-server/webhook/elearning-magic',
|
|
79
|
+
typeOptions: {
|
|
80
|
+
rows: 2,
|
|
81
|
+
},
|
|
82
|
+
},
|
|
61
83
|
{
|
|
62
84
|
displayName: 'Path',
|
|
63
85
|
name: 'path',
|