This commit is contained in:
Conrad Irwin 2024-01-25 23:31:18 -07:00
parent 4b672621d3
commit abdf302367
2 changed files with 1 additions and 11 deletions

View file

@ -88,15 +88,6 @@ impl Channel {
slug.trim_matches(|c| c == '-').to_string() slug.trim_matches(|c| c == '-').to_string()
} }
pub fn channel_buffer_capability(&self) -> Capability {
todo!() // go ask the channel store
// if self.role == proto::ChannelRole::Member || self.role == proto::ChannelRole::Admin {
// Capability::ReadWrite
// } else {
// Capability::ReadOnly
// }
}
} }
pub struct ChannelMembership { pub struct ChannelMembership {

View file

@ -2451,7 +2451,7 @@ async fn remove_channel_member(
/// Toggle the channel between public and private. /// Toggle the channel between public and private.
/// Care is taken to maintain the invariant that public channels only descend from public channels, /// Care is taken to maintain the invariant that public channels only descend from public channels,
/// (though members-only channels can appear at any point in the heirarchy). /// (though members-only channels can appear at any point in the hierarchy).
async fn set_channel_visibility( async fn set_channel_visibility(
request: proto::SetChannelVisibility, request: proto::SetChannelVisibility,
response: Response<proto::SetChannelVisibility>, response: Response<proto::SetChannelVisibility>,
@ -2604,7 +2604,6 @@ async fn move_channel(
channels, channels,
..Default::default() ..Default::default()
}; };
dbg!(&member, &update);
for connection_id in connection_pool.user_connection_ids(member.user_id) { for connection_id in connection_pool.user_connection_ids(member.user_id) {
session.peer.send(connection_id, update.clone())?; session.peer.send(connection_id, update.clone())?;