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 a475a51910 - Show all commits

View file

@ -14,9 +14,12 @@ class Configuration(Mixin):
async def aurora(self, ctx: commands.Context):
"""Settings and miscellaneous commands for Aurora."""
@aurora.command(name="settings", aliases=["config", "options", "set"])
@aurora.group(autohelp=True, name="settings", aliases=["config", "options", "set"])
async def aurora_settings(self, ctx: commands.Context):
"""View Aurora configuration settings."""
"""Configure Aurora's settings."""
@aurora_settings.command(name="core")
async def aurora_settings_core(self, ctx: commands.Context):
await ctx.send(embed=await embed(ctx))
@aurora_settings.command(name="addrole", aliases=["removerole"])