The weeb for the next gen discord boat - Wamellow wamellow.com
bot discord
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

add moderate bot invite links

Luna 16b0d788 4a083688

+4 -3
+2 -2
app/dashboard/[guildId]/moderation/page.tsx
··· 36 36 {AUTOMOD_TYPES.map((type) => ( 37 37 <Switch 38 38 key={type} 39 - label={`Block ${type.replace(/^\w/, (c) => c.toUpperCase())}`} 40 - description={`Prevent ${type.replace(/s$/, "")} links from being sent.`} 39 + label={`Block ${type.replace(/_/g, " ").replace(/(^| +)\w/g, (c) => c.toUpperCase())}`} 40 + description={`Prevent ${type.replace(/_/, " ")} links from being sent.`} 41 41 endpoint={`${url}/${type}`} 42 42 k="enabled" 43 43 defaultState={data.status[type] || false}
+2 -1
typings.ts
··· 360 360 } 361 361 362 362 export enum AutomodType { 363 - BlockInvites = "invites", 363 + BlockServerInvites = "server_invites", 364 + BlockBotInvites = "bot_invites", 364 365 BlockTwitter = "twitter" 365 366 } 366 367