mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-06-15 10:45:01 +00:00
fix: common plugin config defaults
This commit is contained in:
parent
7a893bf026
commit
15f4515ea3
1 changed files with 2 additions and 2 deletions
|
@ -2,8 +2,8 @@ import { BasePluginType } from "knub";
|
|||
import z from "zod/v4";
|
||||
|
||||
export const zCommonConfig = z.strictObject({
|
||||
success_emoji: z.string().default("✅"),
|
||||
error_emoji: z.string().default("❌"),
|
||||
success_emoji: z.string().nullable().default(null),
|
||||
error_emoji: z.string().nullable().default(null),
|
||||
attachment_storing_channel: z.nullable(z.string()).default(null),
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue