mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 18:40:39 +00:00
Send remote delete (#593)
* Implementation of remoteDelete command, iteration 1 * Implementation of remoteDelete command, iteration 2 * Implementation of remoteDelete command, iteration 3 * Implementation of remoteDelete command, iteration 4 * Implementation of remoteDelete command, iteration 5 * Implementation of remoteDelete command, iteration 6 * Renaming dbus methods remoteGroupDelete -> sendGroupRemoteDeleteMessage, remoteDelete -> sendRemoteDeleteMessage
This commit is contained in:
parent
2ad18342a8
commit
05abb3f9f6
7 changed files with 184 additions and 3 deletions
|
@ -22,20 +22,21 @@ public class Commands {
|
|||
addCommand("receive", new ReceiveCommand());
|
||||
addCommand("register", new RegisterCommand());
|
||||
addCommand("removeDevice", new RemoveDeviceCommand());
|
||||
addCommand("remoteDelete", new RemoteDeleteCommand());
|
||||
addCommand("removePin", new RemovePinCommand());
|
||||
addCommand("send", new SendCommand());
|
||||
addCommand("sendReaction", new SendReactionCommand());
|
||||
addCommand("sendContacts", new SendContactsCommand());
|
||||
addCommand("updateContact", new UpdateContactCommand());
|
||||
addCommand("sendReaction", new SendReactionCommand());
|
||||
addCommand("setPin", new SetPinCommand());
|
||||
addCommand("trust", new TrustCommand());
|
||||
addCommand("unblock", new UnblockCommand());
|
||||
addCommand("unregister", new UnregisterCommand());
|
||||
addCommand("updateAccount", new UpdateAccountCommand());
|
||||
addCommand("updateContact", new UpdateContactCommand());
|
||||
addCommand("updateGroup", new UpdateGroupCommand());
|
||||
addCommand("updateProfile", new UpdateProfileCommand());
|
||||
addCommand("verify", new VerifyCommand());
|
||||
addCommand("uploadStickerPack", new UploadStickerPackCommand());
|
||||
addCommand("verify", new VerifyCommand());
|
||||
}
|
||||
|
||||
public static Map<String, Command> getCommands() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue