forked from EllieBotDevs/elliebot
21 lines
No EOL
674 B
C#
21 lines
No EOL
674 B
C#
#nullable disable
|
|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace EllieBot.Common;
|
|
|
|
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Class)]
|
|
[SuppressMessage("Style", "IDE0022:Use expression body for methods")]
|
|
public sealed class OnlyPublicBotAttribute : PreconditionAttribute
|
|
{
|
|
public override Task<PreconditionResult> CheckPermissionsAsync(
|
|
ICommandContext context,
|
|
CommandInfo command,
|
|
IServiceProvider services)
|
|
{
|
|
#if GLOBAL_ELLIE || DEBUG
|
|
return Task.FromResult(PreconditionResult.FromSuccess());
|
|
#else
|
|
return Task.FromResult(PreconditionResult.FromError("Only available on the public bot."));
|
|
#endif
|
|
}
|
|
} |