mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 02:51:14 +00:00
feat(Facebook Lead Ads Trigger Node): Add Facebook Lead Ads Trigger Node (#7113)
Github issue / Community forum post (link here to close automatically): https://community.n8n.io/t/facebook-lead-ads-integration/4590/19 --------- Co-authored-by: Marcus <marcus@n8n.io>
This commit is contained in:
@@ -61,12 +61,12 @@
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent } from 'vue';
|
||||
import type { INodeTypeDescription, IWebhookDescription } from 'n8n-workflow';
|
||||
import { defineComponent } from 'vue';
|
||||
|
||||
import { useToast } from '@/composables';
|
||||
import { FORM_TRIGGER_NODE_TYPE, OPEN_URL_PANEL_TRIGGER_NODE_TYPES } from '@/constants';
|
||||
import { copyPaste } from '@/mixins/copyPaste';
|
||||
import { useToast } from '@/composables';
|
||||
import { workflowHelpers } from '@/mixins/workflowHelpers';
|
||||
|
||||
export default defineComponent({
|
||||
@@ -94,7 +94,7 @@ export default defineComponent({
|
||||
}
|
||||
|
||||
return (this.nodeType as INodeTypeDescription).webhooks!.filter(
|
||||
(webhookData) => webhookData.restartWebhook !== true,
|
||||
(webhookData) => webhookData.restartWebhook !== true && !webhookData.hasLifecycleMethods,
|
||||
);
|
||||
},
|
||||
baseText() {
|
||||
|
||||
Reference in New Issue
Block a user