summary refs log tree commit diff
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-07-03 20:56:57 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-07-03 20:56:57 +1000
commitb87d1e3496d34987aa6eff78511b04a889da75be (patch)
treea260e8849847943e712980902787f581680247ce
parentAdd Nitro Lite Monthly SKU (diff)
downloadserver-b87d1e3496d34987aa6eff78511b04a889da75be.tar.xz
Add premium_progress_bar_enabled to GuildUpdateSchema
-rw-r--r--api/src/routes/guilds/#guild_id/index.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/api/src/routes/guilds/#guild_id/index.ts b/api/src/routes/guilds/#guild_id/index.ts
index 4ec3df72..45e30a74 100644
--- a/api/src/routes/guilds/#guild_id/index.ts
+++ b/api/src/routes/guilds/#guild_id/index.ts
@@ -20,6 +20,7 @@ export interface GuildUpdateSchema extends Omit<GuildCreateSchema, "channels"> {
 	afk_timeout?: number;
 	afk_channel_id?: string;
 	preferred_locale?: string;
+	premium_progress_bar_enabled?: boolean;
 }
 
 router.get("/", route({}), async (req: Request, res: Response) => {