SeaCogs/issuecards/view.py
cswimr fdbc4c0810
Some checks failed
Actions / Lint Code (Ruff & Pylint) (pull_request) Failing after 55s
Actions / Build Documentation (MkDocs) (pull_request) Failing after 1m1s
feat(issuecards): init
2025-03-28 09:56:44 -05:00

22 lines
952 B
Python

from discord import Interaction, Message, NotFound, ui
from redbot.core import commands
from redbot.core.utils.mod import is_admin_or_superior
class ProviderAddView(ui.View):
def __init__(self, ctx: commands.Context, message: Message, timeout: int | None = None) -> None:
super().__init__(timeout=timeout)
self.ctx = ctx
self.message = message
async def on_timeout() -> None:
try:
await self.message.edit(view=None)
except NotFound:
pass
async def interaction_check(self, interaction: Interaction) -> bool:
if await interaction.client.is_owner(interaction.user) or (interaction.guild and await is_admin_or_superior(self.ctx.bot, interaction.author)):
return True
await interaction.response.send_message("This button is only for bot owners or server administrators.", ephemeral=True)
return False