Updated Default TTS requests to use stores. Added a modify method for grouped save stores.
This commit is contained in:
@@ -44,15 +44,15 @@ namespace HermesSocketServer.Store
|
||||
_logger.Information($"Loaded {_store.Count} users from database.");
|
||||
}
|
||||
|
||||
public override void OnInitialAdd(string key, User value)
|
||||
protected override void OnInitialAdd(string key, User value)
|
||||
{
|
||||
}
|
||||
|
||||
public override void OnInitialModify(string key, User value)
|
||||
protected override void OnInitialModify(string key, User value)
|
||||
{
|
||||
}
|
||||
|
||||
public override void OnInitialRemove(string key)
|
||||
protected override void OnInitialRemove(string key)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user