Tell host to unshare project when last guest leaves

This commit is contained in:
Max Brunsfeld 2022-05-13 14:57:55 -07:00
parent 5789aeea24
commit 1996b01a74
2 changed files with 9 additions and 0 deletions

View file

@ -58,6 +58,7 @@ pub struct RemovedConnectionState {
pub struct LeftProject {
pub connection_ids: Vec<ConnectionId>,
pub host_user_id: UserId,
pub host_connection_id: ConnectionId,
}
#[derive(Copy, Clone)]
@ -504,6 +505,7 @@ impl Store {
Ok(LeftProject {
connection_ids: project.connection_ids(),
host_connection_id: project.host_connection_id,
host_user_id: project.host_user_id,
})
}