Update
This commit is contained in:
parent
73559076b6
commit
e6d0557f58
1 changed files with 6 additions and 3 deletions
|
@ -13,9 +13,12 @@ class RoleView(nextcord.ui.View):
|
|||
self.bot = bot
|
||||
|
||||
#res = await self.bot.cur.execute(f"SELECT roleid FROM rolebutton WHERE serverid = {self.bot.roleguild.id}")
|
||||
|
||||
self.add_item(nextcord.ui.Button(label="Test", style=nextcord.ButtonStyle.gray, custom_id="rolebutton:821095192831852554"))
|
||||
self.add_item(nextcord.ui.Button(label="Test 2", style=nextcord.ButtonStyle.gray, custom_id="rolebutton:1058708072064884736"))
|
||||
button = nextcord.ui.Button(label="Test", style=nextcord.ButtonStyle.gray, custom_id="rolebutton:821095192831852554")
|
||||
button.callback = callback()
|
||||
self.add_item(button)
|
||||
button = nextcord.ui.Button(label="Test 2", style=nextcord.ButtonStyle.gray, custom_id="rolebutton:1058708072064884736")
|
||||
button.callback = callback()
|
||||
self.add_item(button)
|
||||
|
||||
async def callback(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
|
||||
await interaction.response.send_message(f"user requested role {button.custom_id}", ephemeral=True)
|
||||
|
|
Loading…
Reference in a new issue