more updates

This commit is contained in:
Zontreck 2020-04-20 01:42:08 -07:00
parent 504a66f807
commit 80f536bfe9
7 changed files with 306 additions and 11 deletions

View file

@ -59,6 +59,14 @@ namespace Bot
public Dictionary<UUID, int> BotAdmins { get; set; } = new Dictionary<UUID, int>();
public List<string> AuthedGithubUsers { get; set; } = new List<string>();
public List<string> LinkedDLLs { get; set; } = new List<string>();
public bool Authed(string GHLogin)
{
if (AuthedGithubUsers.Contains(GHLogin)) return true;
else return false;
}
public void Load()
{