This commit is contained in:
dengqichen 2025-10-22 09:58:19 +08:00
parent 8a9e221b22
commit 56338dc3a8

View File

@ -28,8 +28,8 @@ export const NotificationNodeDefinition: ConfigurableNodeDefinition = {
gradient: ['#ffffff', '#fef3c7'] gradient: ['#ffffff', '#fef3c7']
}, },
handles: { handles: {
input: true, // 有输入 input: true,
output: false // 无输出 output: true
}, },
features: { features: {
showBadge: true, showBadge: true,
@ -81,12 +81,6 @@ export const NotificationNodeDefinition: ConfigurableNodeDefinition = {
description: "通知消息的正文内容,支持变量表达式", description: "通知消息的正文内容,支持变量表达式",
format: "textarea", format: "textarea",
default: "" default: ""
},
recipients: {
type: "string",
title: "收件人",
description: "多个收件人用逗号分隔,支持变量表达式",
default: ""
} }
}, },
required: ["nodeName", "nodeCode", "notificationType", "title", "content", "recipients"] required: ["nodeName", "nodeCode", "notificationType", "title", "content", "recipients"]