feat: ignore channel commands

This commit is contained in:
sam 2024-10-14 21:28:34 +02:00
parent 4f718cde20
commit af437ff88c
Signed by: sam
GPG key ID: 5F3C3C1B3166639D
6 changed files with 319 additions and 0 deletions

View file

@ -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)]