forked from syntaxbullet/AuroraBot-discord
feat: Introduce a comprehensive feedback system with a slash command, interactive UI, and configuration.
This commit is contained in:
@@ -51,6 +51,7 @@ export interface GameConfigType {
|
||||
colorRoles: string[];
|
||||
welcomeChannelId?: string;
|
||||
welcomeMessage?: string;
|
||||
feedbackChannelId?: string;
|
||||
terminal?: {
|
||||
channelId: string;
|
||||
messageId: string;
|
||||
@@ -119,6 +120,7 @@ const configSchema = z.object({
|
||||
colorRoles: z.array(z.string()).default([]),
|
||||
welcomeChannelId: z.string().optional(),
|
||||
welcomeMessage: z.string().optional(),
|
||||
feedbackChannelId: z.string().optional(),
|
||||
terminal: z.object({
|
||||
channelId: z.string(),
|
||||
messageId: z.string()
|
||||
|
||||
Reference in New Issue
Block a user