add embed captcha to bot

This commit is contained in:
Stanley Dimant 2024-09-24 02:49:39 +02:00
parent b17fb758f9
commit 561e48510b
5 changed files with 79 additions and 13 deletions

View file

@ -16,6 +16,7 @@ public class DiscordBotServices
public ConcurrentDictionary<string, DateTime> LastVanityGidChange = new();
public ConcurrentDictionary<ulong, ulong> ValidInteractions { get; } = new();
public Dictionary<RestRole, string> VanityRoles { get; set; } = new();
public ConcurrentBag<ulong> VerifiedCaptchaUsers { get; } = new();
private readonly IServiceProvider _serviceProvider;
private readonly IConfigurationService<ServicesConfiguration> _configuration;
private CancellationTokenSource verificationTaskCts;