Add blocking/unblocking for groups

This commit is contained in:
Daniel Schäufele 2020-01-06 23:55:24 +01:00
parent 5ab3152a40
commit ff478a5b0a
8 changed files with 116 additions and 62 deletions

View file

@ -26,6 +26,8 @@ public interface Signal extends DBusInterface {
void setContactBlocked(String number, boolean blocked);
void setGroupBlocked(byte[] groupId, boolean blocked) throws GroupNotFoundException;
List<byte[]> getGroupIds();
String getGroupName(byte[] groupId);