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 priority role

Luna 83278ddf fad9f857

+11 -1
+9
app/dashboard/[guildId]/page.tsx
··· 112 112 defaultState={guild?.tts.logChannelId} 113 113 showClear 114 114 /> 115 + <SelectMenu 116 + name="Priority role" 117 + url={`/guilds/${params.guildId}`} 118 + dataName="priorityRoleId" 119 + items={guild?.roles?.sort((a, b) => b.position - a.position).map((r) => ({ name: `@${r.name}`, value: r.id, color: r.color }))} 120 + description="People with this role bypass the queue and speak immediately." 121 + defaultState={guild?.tts.priorityRoleId} 122 + showClear 123 + /> 115 124 <Switch 116 125 name="Announce user" 117 126 url={`/guilds/${params.guildId}`}
+2 -1
typings.ts
··· 43 43 tts: { 44 44 channelId: string | null; 45 45 announceUser: boolean; 46 - logChannelId: string | null 46 + logChannelId: string | null; 47 + priorityRoleId: string | null; 47 48 } 48 49 } 49 50