This commit is contained in:
insert 2024-08-09 10:09:18 -04:00
parent e5cd16a519
commit 3005270123
Signed by: insert
GPG key ID: A70775C389ACF105

View file

@ -11,15 +11,15 @@ class RoleView(nextcord.ui.View):
def __init__(self,bot):
super().__init__(timeout=None)
self.bot = bot
async def buttoncallback(self, button: nextcord.ui.Button, interaction: nextcord.Interaction):
async def buttoncallback(self, button: nextcord.ui.Button, interaction: nextcord.Interaction) -> None:
await interaction.response.send_message(f"user requested role {button.custom_id}", ephemeral=True)
return
#res = await self.bot.cur.execute(f"SELECT roleid FROM rolebutton WHERE serverid = {self.bot.roleguild.id}")
button = nextcord.ui.Button(label="Test", style=nextcord.ButtonStyle.gray, custom_id="rolebutton:821095192831852554")
button.callback = buttoncallback()
button.callback = buttoncallback(self, button)
self.add_item(button)
button = nextcord.ui.Button(label="Test 2", style=nextcord.ButtonStyle.gray, custom_id="rolebutton:1058708072064884736")
button.callback = buttoncallback()
button.callback = buttoncallback(self, button)
self.add_item(button)