lightfinder config, securing methods with stricter checking and added pair request notifications
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
|
||||
namespace LightlessSyncServer.Configuration;
|
||||
|
||||
public interface IBroadcastConfiguration
|
||||
{
|
||||
string RedisKeyPrefix { get; }
|
||||
TimeSpan BroadcastEntryTtl { get; }
|
||||
int MaxStatusBatchSize { get; }
|
||||
bool NotifyOwnerOnPairRequest { get; }
|
||||
bool EnableBroadcasting { get; }
|
||||
bool EnableSyncshellBroadcastPayloads { get; }
|
||||
|
||||
string BuildRedisKey(string hashedCid);
|
||||
string BuildPairRequestNotification(string displayName);
|
||||
}
|
||||
Reference in New Issue
Block a user