Skip to content
Snippets Groups Projects
Unverified Commit 17f44f28 authored by dnns01's avatar dnns01 Committed by GitHub
Browse files

Rename argument `show_all` to `public`

parent 04f4f66d
No related branches found
No related tags found
No related merge requests found
......@@ -91,10 +91,10 @@ class Appointments(commands.GroupCog, name="appointments", description="Handle A
Appointment.update(message=message.id).where(Appointment.id == appointment.id).execute()
@app_commands.command(name="list", description="Listet alle Termine dieses Kanals auf.")
@app_commands.describe(show_all="Zeige die Liste für alle an.")
async def cmd_appointments_list(self, interaction: Interaction, show_all: bool = False):
@app_commands.describe(public="Sichtbarkeit der Ausgabe: für alle Mitglieder oder nur für dich.")
async def cmd_appointments_list(self, interaction: Interaction, public: bool = False):
""" List (and link) all Appointments in the current channel """
await interaction.response.defer(ephemeral=not show_all)
await interaction.response.defer(ephemeral=not public)
appointments = Appointment.select().where(Appointment.channel == interaction.channel_id)
if appointments:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment