This commit is contained in:
Jörn-Michael Miehe 2023-11-19 19:12:06 +01:00
parent a7a1a3242e
commit 3bc24d45af

View file

@ -59,8 +59,8 @@ class PostModal(ui.Modal, title="Post verfassen"):
async def on_submit(self, interaction: discord.Interaction):
post_content = f"{self.content.value}\n> Gepostet von <@{interaction.user.id}>"
await interaction.response.send_message(
# Vorschau mit Buttons
await interaction.response.send_message(
content=f"## Post-Vorschau\n\n{post_content}",
view=(view := PostConfirm()),
# nur für ausführenden User
@ -103,11 +103,11 @@ async def post(interaction: discord.Interaction):
await interaction.response.send_modal(PostModal())
else:
# Zugriff verweigern
_logger.warning(
f"User {interaction.user.name}({interaction.user.id}) tried to /post"
)
await interaction.response.send_message(
# Zugriff verweigern
content="Du bist nicht berechtigt, den `/post`-Befehl zu benutzen!",
# nur für ausführenden User
ephemeral=True,