implement Dbus updateAccount and listDevices

implement updateAccount(deviceName<s>) to change device name

implement listDevices

update documentation
This commit is contained in:
John Freed 2021-09-21 11:17:43 +02:00
parent 6c29d90503
commit b875465eff
4 changed files with 337 additions and 112 deletions

View file

@ -83,6 +83,10 @@ public interface Signal extends DBusInterface {
boolean isRegistered();
List<String> listDevices() throws Error.Failure;
void updateAccount(String deviceName) throws Error.Failure;
void updateProfile(
String name, String about, String aboutEmoji, String avatarPath, boolean removeAvatar
) throws Error.Failure;