// Add a user to the blocklistconst addBlackList = await friendshipManager.addToBlackList(["user1"]);
deleteFromBlackList
(Details) to remove a user from the blocklist, after which messages from the user can be received.// Remove a user from the blocklistconst deleteBlackList = await friendshipManager.deleteFromBlackList(["user1"]);
// Get the blocklistconst blacklist = await friendshipManager.getBlackList();
Was this page helpful?