Added groups & permissions. Fixed 7tv reconnection. Added more subcommands for refresh.
This commit is contained in:
11
Chat/Groups/Permissions/IGroupPermissionManager.cs
Normal file
11
Chat/Groups/Permissions/IGroupPermissionManager.cs
Normal file
@ -0,0 +1,11 @@
|
||||
namespace TwitchChatTTS.Chat.Groups.Permissions
|
||||
{
|
||||
public interface IGroupPermissionManager
|
||||
{
|
||||
void Set(string path, bool? allow);
|
||||
bool? CheckIfAllowed(string path);
|
||||
bool? CheckIfAllowed(IEnumerable<string> groups, string path);
|
||||
void Clear();
|
||||
bool Remove(string path);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user