WIP rehost stuff

This commit is contained in:
barelyprofessional
2026-02-05 23:26:46 -06:00
parent 477c121f72
commit 57e1b9c3b9
3 changed files with 10 additions and 1 deletions

View File

@@ -512,6 +512,11 @@ public static class BuiltIn
public static string XeetEnabled = "Xeet.Enabled";
[BuiltInSetting("Connection string for bot's Redis", SettingValueType.Text)]
public static string BotRedisConnectionString = "Bot.RedisConnectionString";
[BuiltInSetting("Whether to automatically rehost images when they're added", SettingValueType.Boolean, "true",
BooleanRegex)]
public static string BotImageRehostEnabled = "Bot.Image.RehostEnabled";
[BuiltInSetting("Domain to look for when determining whether to rehost", SettingValueType.Text, "i.ddos.lgbt")]
public static string BotImageRehostDomain = "Bot.Image.RehostDomain";
}
}