From bdf80f438da92e7460cc2b6ba564e1762c1d7b24 Mon Sep 17 00:00:00 2001 From: Paul Cushman Date: Thu, 21 Dec 2023 14:27:46 -0500 Subject: [PATCH] add call to the cmdDeleteGroupConvo want to be able to delete group conversations --- lib/bot.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/bot.js b/lib/bot.js index 94b1d9e..ce2a747 100644 --- a/lib/bot.js +++ b/lib/bot.js @@ -126,6 +126,10 @@ class WickrBot extends EventEmitter { return this.wickr.cmdAddGroupConvo(users) } + deleteGroupConvo(vgroupid) { + return this.wickr.cmdDeleteGroupConvo(vgroupid) + } + createRoom(users, moderators, title, description) { if (typeof users === 'string') { users = [users]