3
0
Fork 0
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:
Dragory 2025-06-01 01:34:48 +00:00
parent 7a893bf026
commit 15f4515ea3
No known key found for this signature in database

View file

@ -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),
});