Ring users upon connection if somebody was calling them before connecting

Co-Authored-By: Nathan Sobo <nathan@zed.dev>
This commit is contained in:
Antonio Scandurra 2022-09-26 17:37:58 +02:00
parent 6aa0f0b200
commit 80ab144bf3
6 changed files with 90 additions and 47 deletions

View file

@ -181,12 +181,12 @@ message ParticipantLocation {
message Call {
uint64 room_id = 1;
uint64 to_user_id = 2;
uint64 recipient_user_id = 2;
}
message IncomingCall {
uint64 room_id = 1;
uint64 from_user_id = 2;
uint64 caller_user_id = 2;
repeated uint64 participant_user_ids = 3;
}