add descriptions to roles that can set vanity ids

This commit is contained in:
rootdarkarchon
2024-02-15 21:10:09 +01:00
parent bd128e832f
commit e63f056c38
4 changed files with 39 additions and 18 deletions

View File

@@ -13,7 +13,7 @@ public class DiscordBotServices
public ConcurrentDictionary<ulong, DateTime> LastVanityChange = new();
public ConcurrentDictionary<string, DateTime> LastVanityGidChange = new();
public ConcurrentDictionary<ulong, ulong> ValidInteractions { get; } = new();
public List<RestRole> VanityRoles { get; set; } = new();
public Dictionary<RestRole, string> VanityRoles { get; set; } = new();
private readonly IServiceProvider _serviceProvider;
private CancellationTokenSource verificationTaskCts;