Added TTS flags. Fixed adding, modifying and loading TTS Filters. Changed TTS Filters loading from database to TTS Fitler Store on login ack.

This commit is contained in:
Tom
2025-01-15 14:10:57 +00:00
parent 00cea32cfa
commit b00c72ec2a
5 changed files with 24 additions and 17 deletions

View File

@@ -6,7 +6,7 @@ namespace HermesSocketServer.Requests
public class UpdateRedemption : IRequest
{
public string Name => "update_redemption";
public string[] RequiredKeys => ["id", "redemption", "action", "order"];
public string[] RequiredKeys => ["id", "redemption", "action", "order", "state"];
private ILogger _logger;
public UpdateRedemption(ILogger logger)