fix: add moderatorBotToken to plugin configSchema

The plugin's openclaw.plugin.json has additionalProperties:false,
so any config field not in the schema causes gateway startup failure.
This commit is contained in:
zhi
2026-02-28 12:11:04 +00:00
parent 54ff78cffe
commit 8c8757e9a7

View File

@@ -24,7 +24,8 @@
"discordControlApiToken": { "type": "string" },
"discordControlCallerId": { "type": "string" },
"enableDebugLogs": { "type": "boolean", "default": false },
"debugLogChannelIds": { "type": "array", "items": { "type": "string" }, "default": [] }
"debugLogChannelIds": { "type": "array", "items": { "type": "string" }, "default": [] },
"moderatorBotToken": { "type": "string" }
},
"required": ["noReplyProvider", "noReplyModel"]
}