fix(moderation): fixed moderationset
Some checks failed
Pylint / Pylint (3.10) (push) Has been cancelled
Some checks failed
Pylint / Pylint (3.10) (push) Has been cancelled
This commit is contained in:
parent
fa2c7d5b9c
commit
c99d8c5bf1
1 changed files with 16 additions and 20 deletions
|
@ -1142,51 +1142,47 @@ class Moderation(commands.Cog):
|
|||
async def moderationset(self, ctx: commands.Context):
|
||||
"""Manage moderation commands."""
|
||||
|
||||
@commands.group(autohelp=True)
|
||||
@moderationset.group(autohelp=True, name='history')
|
||||
async def moderationset_history(self, ctx: commands.Context):
|
||||
"""Manage configuration for the `/history` command."""
|
||||
"""Manage configuration for the /history command."""
|
||||
|
||||
@commands.group(autohelp=True)
|
||||
async def moderationset_history_user(self, ctx: commands.Context):
|
||||
"""Manage configuration for the `/history` command, per user."""
|
||||
|
||||
@moderationset_history_user.command(name='ephemeral', aliases=['hidden', 'hide'])
|
||||
@moderationset_history.command(name='ephemeral', aliases=['hidden', 'hide'])
|
||||
async def moderationset_history_user_ephemeral(self, ctx: commands.Context):
|
||||
"""Toggle if the `/history` command should be ephemeral."""
|
||||
"""Toggle if the /history command should be ephemeral."""
|
||||
await self.config.user(ctx.author).history_ephemeral.set(not await self.config.user(ctx.author).ephemeral())
|
||||
await ctx.send(f"Ephemeral setting set to {await self.config.user(ctx.author).ephemeral()}")
|
||||
|
||||
@moderationset_history_user.command(name='pagesize')
|
||||
@moderationset_history.command(name='pagesize')
|
||||
async def moderationset_history_user_pagesize(self, ctx: commands.Context, pagesize: int):
|
||||
"""Set the amount of cases to display per page."""
|
||||
await self.config.user(ctx.author).history_pagesize.set(pagesize)
|
||||
await ctx.send(f"Pagesize set to {await self.config.user(ctx.author).history_pagesize()}")
|
||||
|
||||
@moderationset_history_user.group(name='inline')
|
||||
async def moderationset_history_user_inline(self, ctx: commands.Context):
|
||||
"""Manage configuration for the `/history` command's inline argument."""
|
||||
@moderationset_history.group(name='inline')
|
||||
async def moderationset_history_inline(self, ctx: commands.Context):
|
||||
"""Manage configuration for the /history command's inline argument."""
|
||||
|
||||
@moderationset_history_user_inline.command(name='toggle')
|
||||
@moderationset_history_inline.command(name='toggle')
|
||||
async def moderationset_history_user_inline_toggle(self, ctx: commands.Context):
|
||||
"""Enable the `/history` command's inline argument by default."""
|
||||
"""Enable the /history command's inline argument by default."""
|
||||
await self.config.user(ctx.author).history_inline.set(not await self.config.user(ctx.author).history_inline())
|
||||
await ctx.send(f"Inline setting set to {await self.config.user(ctx.author).history_inline()}")
|
||||
|
||||
@moderationset_history_user_inline.command(name='pagesize')
|
||||
@moderationset_history_inline.command(name='pagesize')
|
||||
async def moderationset_history_user_inline_pagesize(self, ctx: commands.Context, pagesize: int):
|
||||
"""Set the amount of cases to display per page."""
|
||||
await self.config.user(ctx.author).history_inline_pagesize.set(pagesize)
|
||||
await ctx.send(f"Inline pagesize set to {await self.config.user(ctx.author).history_inline_pagesize()}")
|
||||
|
||||
@commands.group(autohelp=True)
|
||||
@moderationset.group(autohelp=True, name='guild')
|
||||
@checks.admin()
|
||||
async def moderationset_history_guild(self, ctx: commands.Context):
|
||||
"""Manage configuration for the `/history` command, per guild."""
|
||||
"""Manage configuration for the /history command, per guild."""
|
||||
|
||||
@moderationset_history_guild.command(name='ephemeral', aliases=['hidden', 'hide'])
|
||||
@checks.admin()
|
||||
async def moderationset_history_guild_ephemeral(self, ctx: commands.Context):
|
||||
"""Toggle if the `/history` command should be ephemeral."""
|
||||
"""Toggle if the /history command should be ephemeral."""
|
||||
await self.config.guild(ctx.guild).history_ephemeral.set(not await self.config.guild(ctx.guild).ephemeral())
|
||||
await ctx.send(f"Ephemeral setting set to {await self.config.guild(ctx.guild).ephemeral()}")
|
||||
|
||||
|
@ -1200,12 +1196,12 @@ class Moderation(commands.Cog):
|
|||
@moderationset_history_guild.group(name='inline')
|
||||
@checks.admin()
|
||||
async def moderationset_history_guild_inline(self, ctx: commands.Context):
|
||||
"""Manage configuration for the `/history` command's inline argument."""
|
||||
"""Manage configuration for the /history command's inline argument."""
|
||||
|
||||
@moderationset_history_guild_inline.command(name='toggle')
|
||||
@checks.admin()
|
||||
async def moderationset_history_guild_inline_toggle(self, ctx: commands.Context):
|
||||
"""Enable the `/history` command's inline argument by default."""
|
||||
"""Enable the /history command's inline argument by default."""
|
||||
await self.config.guild(ctx.guild).history_inline.set(not await self.config.guild(ctx.guild).history_inline())
|
||||
await ctx.send(f"Inline setting set to {await self.config.guild(ctx.guild).history_inline()}")
|
||||
|
||||
|
|
Loading…
Reference in a new issue