misc(aurora): added docstrings/modified docstrings for some of the config commands

This commit is contained in:
Seaswimmer 2024-01-15 14:29:13 +00:00
parent a7dc1400c4
commit b86a91882f
Signed by untrusted user: cswimr
GPG key ID: D74DDDDF420E13DF

View file

@ -20,6 +20,7 @@ class Configuration(Mixin):
@aurora_settings.command(name="core")
async def aurora_settings_core(self, ctx: commands.Context):
"""Manage Aurora's core settings."""
await ctx.send(embed=await embed(ctx))
@aurora_settings.command(name="addrole", aliases=["removerole"])
@ -40,12 +41,12 @@ class Configuration(Mixin):
@commands.admin()
@commands.guild_only()
async def aurora_import(self, ctx: commands.Context):
"""Import moderations from other bots."""
"""Import moderation history from other bots."""
@aurora_import.command(name="aurora")
@commands.admin()
async def aurora_import_aurora(self, ctx: commands.Context):
"""Import moderations from another bot using Aurora."""
"""Import moderation history from another bot using Aurora."""
if (
ctx.message.attachments
and ctx.message.attachments[0].content_type
@ -63,7 +64,7 @@ class Configuration(Mixin):
@aurora_import.command(name="galacticbot")
@commands.admin()
async def aurora_import_galacticbot(self, ctx: commands.Context):
"""Import moderations from GalacticBot."""
"""Import moderation history from GalacticBot."""
if (
ctx.message.attachments
and ctx.message.attachments[0].content_type