add: GUILD_WELCOME_SCREEN endpoint

This commit is contained in:
ITOH
2021-04-14 09:53:24 +02:00
parent d3e5f537d3
commit 02e1495988

View File

@@ -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`,