Add dbus methods: deleteContact and deleteRecipient

Closes #814
This commit is contained in:
jonas.hoefer 2021-12-02 11:02:28 +01:00 committed by AsamK
parent e92d37e3a5
commit 861f47d734
4 changed files with 34 additions and 2 deletions

View file

@ -383,12 +383,12 @@ public class DbusManagerImpl implements Manager {
@Override
public void deleteRecipient(final RecipientIdentifier.Single recipient) throws IOException {
throw new UnsupportedOperationException();
signal.deleteRecipient(recipient.getIdentifier());
}
@Override
public void deleteContact(final RecipientIdentifier.Single recipient) throws IOException {
throw new UnsupportedOperationException();
signal.deleteContact(recipient.getIdentifier());
}
@Override