feat: ignore channel commands
This commit is contained in:
parent
4f718cde20
commit
af437ff88c
6 changed files with 319 additions and 0 deletions
|
|
@ -50,6 +50,16 @@ public class ChannelCommands(
|
|||
{
|
||||
private readonly ILogger _logger = logger.ForContext<ChannelCommands>();
|
||||
|
||||
[Command("check-permissions")]
|
||||
[Description(
|
||||
"Check for any permission issues that would prevent Catalogger from sending logs."
|
||||
)]
|
||||
[DiscordDefaultMemberPermissions(DiscordPermission.ManageGuild)]
|
||||
public async Task<IResult> CheckPermissionsAsync()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
[Command("configure-channels")]
|
||||
[Description("Configure log channels for this server.")]
|
||||
[DiscordDefaultMemberPermissions(DiscordPermission.ManageGuild)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue