MODiX
MODiX copied to clipboard
Discord Bot handling basic moderation needs, soon implements statistics.
Please add a command that would simply read back an input + ping after a certain time.
This ended up being a bit of a rat's nest of intertwined dependencies, so much so that I had to diagram it to get my head around it. So I...
There's a little overhead when Discord.NET's API changes and we need to update the Discord.Net.Abstractions library as part of MODiX to match the new contract(s). I understand why the abstractions...
...by allowing users to **download data** and allow users to **delete their data** (at the cost of kicking them from the server to ensure that no further data is collected...
as per https://github.com/discord-csharp/MODiX/pull/733
`A MessageUpdated handler has thrown an unhandled exception.: System.NullReferenceException: Object reference not set to an instance of an object. at Modix.Services.Core.MessageLogBehavior.FormatMessage(String input) in /Users/JayMadden/modix_base/modix/Modix.Services/Core/MessageLogBehavior.cs:line 52 at Modix.Services.Core.MessageLogBehavior.HandleMessageEdit(Cacheable2 cachedOriginal, IMessage updated,...
Discord's bulk message delete API won't delete messages older than 2 weeks and will throw an error if you try. It might be nice to limit the messages we try...
Improve searching in [mod.gg/userlookup](https://mod.gg/userlookup). 1. allow searching for users with just 1 or 2 letter usernames?  2. fix searching result not including user who surely exists 
Per conversations in Discord, this is a pretty popular idea, that should improve user experience in configuring channels a fair bit. Currently, Channel Designations must be applied to individual channels...
In all areas where we are storing datetimes, we're currently utilising .NET's `DateTimeOffset` type. While we try and retain the timezone/offset information, it turns out, the EF Core driver for...