From 02e14959883620ebb9aefe7ef3ec39bb85373650 Mon Sep 17 00:00:00 2001 From: ITOH <72305210+itohatweb@users.noreply.github.com> Date: Wed, 14 Apr 2021 09:53:24 +0200 Subject: [PATCH] add: GUILD_WELCOME_SCREEN endpoint --- src/util/constants.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/util/constants.ts b/src/util/constants.ts index bff7d1483..16ef3e07f 100644 --- a/src/util/constants.ts +++ b/src/util/constants.ts @@ -121,6 +121,8 @@ export const endpoints = { GUILD_PREVIEW: (guildId: string) => `${GUILDS_BASE(guildId)}/preview`, UPDATE_VOICE_STATE: (guildId: string, userId?: string) => `${GUILDS_BASE(guildId)}/voice-states/${userId ?? "@me"}`, + GUILD_WELCOME_SCREEN: (guildId: string) => + `${GUILDS_BASE(guildId)}/welcome-screen`, // Voice VOICE_REGIONS: `${baseEndpoints.BASE_URL}/voice/regions`,