Aurora Configuration Rewrite #15

Merged
cswimr merged 73 commits from aurora-config-rewrite into main 2024-01-16 12:19:08 -05:00
Showing only changes of commit a7f6cff625 - Show all commits

View file

@ -11,18 +11,13 @@ class Overrides(ui.View):
@ui.button(label="Auto Evidence Format", style=ButtonStyle.green) @ui.button(label="Auto Evidence Format", style=ButtonStyle.green)
async def auto_evidenceformat(self, interaction: Interaction, button: ui.Button): # pylint: disable=unused-argument async def auto_evidenceformat(self, interaction: Interaction, button: ui.Button): # pylint: disable=unused-argument
await interaction.response.defer(ephemeral=True) await interaction.response.defer()
current_setting = await config.user(self.ctx.author).auto_evidenceformat() current_setting = await config.user(self.ctx.author).auto_evidenceformat()
if current_setting is not None: if current_setting is not None:
await config.user(self.ctx.author).auto_evidenceformat.set(not current_setting) await config.user(self.ctx.author).auto_evidenceformat.set(not current_setting)
else: else:
await config.user(self.ctx.author).auto_evidenceformat.set(True) await config.user(self.ctx.author).auto_evidenceformat.set(True)
if current_setting is True: await interaction.message.edit(embed=await embed(self.ctx))
response = "Auto Evidence Format disabled."
else:
response = "Auto Evidence Format enabled."
await self.ctx.message.edit(embed=await embed(self.ctx))
await interaction.followup.send(content=response, ephemeral=True)
@ui.button(label="Ephemeral", style=ButtonStyle.green) @ui.button(label="Ephemeral", style=ButtonStyle.green)
async def ephemeral(self, interaction: Interaction, button: ui.Button): # pylint: disable=unused-argument async def ephemeral(self, interaction: Interaction, button: ui.Button): # pylint: disable=unused-argument