Add ability to join a room from a channel ID

co-authored-by: max <max@zed.dev>
This commit is contained in:
Mikayla Maki 2023-07-31 15:27:10 -07:00
parent 4b94bfa045
commit 92fa879b0c
No known key found for this signature in database
16 changed files with 485 additions and 105 deletions

View file

@ -10,7 +10,7 @@ pub struct ChannelStore {
channel_invitations: Vec<Channel>,
client: Arc<Client>,
user_store: ModelHandle<UserStore>,
rpc_subscription: Subscription,
_rpc_subscription: Subscription,
}
#[derive(Debug, PartialEq)]
@ -37,7 +37,7 @@ impl ChannelStore {
channel_invitations: vec![],
client,
user_store,
rpc_subscription,
_rpc_subscription: rpc_subscription,
}
}