From ed76b9ed7307976f27354b6b10f3e4f9a7cea676 Mon Sep 17 00:00:00 2001 From: ashneverdawn <8341280+ashneverdawn@users.noreply.github.com> Date: Mon, 11 Nov 2024 12:12:40 -0500 Subject: [PATCH] add todo comment on channel messaging --- extensions/warp-ipfs/src/store/message/community_task.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/extensions/warp-ipfs/src/store/message/community_task.rs b/extensions/warp-ipfs/src/store/message/community_task.rs index f307b9d1b..e6ebe319a 100644 --- a/extensions/warp-ipfs/src/store/message/community_task.rs +++ b/extensions/warp-ipfs/src/store/message/community_task.rs @@ -854,7 +854,10 @@ impl CommunityTask { impl CommunityTask { pub async fn delete(&mut self) -> Result<(), Error> { // TODO: Maybe announce to network of the local node removal here + + // TODO: implement messaging in channels and call something like this but on the channels: //self.document.messages.take(); + self.document.deleted = true; self.set_document().await?; if let Ok(mut ks_map) = self.root.get_keystore_map().await {