Added Chips.gg integration. It basically works but needs more testing and also smashes the DB with how fast their feed updates.

This commit is contained in:
barelyprofessional
2024-08-17 21:58:10 +08:00
parent d2f0519414
commit b390368713
9 changed files with 819 additions and 2 deletions

View File

@@ -376,6 +376,14 @@ public static class BuiltIn
Description = "Proxy in use specifically for FlareSolverr",
Default = null,
IsSecret = false
},
new BuiltInSettingsModel
{
Key = Keys.ChipsggBmjUsername,
Regex = ".+",
Description = "Bossman's Chips.gg username",
Default = "TheBossmanJack",
IsSecret = false
}
];
@@ -414,5 +422,6 @@ public static class BuiltIn
public static string RainbetBmjPublicId = "Rainbet.BmjPublicId";
public static string FlareSolverrApiUrl = "FlareSolverr.ApiUrl";
public static string FlareSolverrProxy = "FlareSolverr.Proxy";
public static string ChipsggBmjUsername = "Chipsgg.BmjUsername";
}
}