Added .stondel which makes the bot delete stream online messages after the stream goes offline

This commit is contained in:
Kwoth
2022-04-27 21:57:24 +02:00
parent 24a9a02cc3
commit 39ae070c9d
10 changed files with 2907 additions and 4 deletions

View File

@@ -92,6 +92,7 @@ public class GuildConfig : DbEntity
public List<FeedSub> FeedSubs { get; set; } = new();
public IndexedCollection<ReactionRoleMessage> ReactionRoleMessages { get; set; } = new();
public bool NotifyStreamOffline { get; set; }
public bool DeleteStreamOnlineMessage { get; set; }
public List<GroupName> SelfAssignableRoleGroupNames { get; set; }
public int WarnExpireHours { get; set; }
public WarnExpireAction WarnExpireAction { get; set; } = WarnExpireAction.Clear;