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 tts usage logs

Luna b139b937 0de6fe17

+10
+9
app/dashboard/[guildId]/page.tsx
··· 112 112 defaultState={guild?.tts.channelId} 113 113 showClear 114 114 /> 115 + <SelectMenu 116 + name="Usage logs" 117 + url={`/guilds/${params.guildId}`} 118 + dataName="logChannelId" 119 + items={guild?.channels?.sort((a, b) => a.name.localeCompare(b.name)).map((c) => ({ name: `#${c.name}`, value: c.id }))} 120 + description="Select a channel where usage logs should be psoted into." 121 + defaultState={guild?.tts.logChannelId} 122 + showClear 123 + /> 115 124 <Switch 116 125 name="Announce user" 117 126 url={`/guilds/${params.guildId}`}
+1
typings.ts
··· 43 43 tts: { 44 44 channelId: string | null; 45 45 announceUser: boolean; 46 + logChannelId: string | null 46 47 } 47 48 } 48 49