Let users ring members when starting a group call

Co-Authored-By: Josh Perez <60019601+josh-signal@users.noreply.github.com>
This commit is contained in:
Evan Hahn
2021-08-25 16:42:51 -05:00
committed by GitHub
parent 4afe4649ec
commit 0e7f641dc1
25 changed files with 556 additions and 97 deletions

View File

@@ -30,6 +30,7 @@ type ActiveCallBaseType = {
isInSpeakerView: boolean;
isSharingScreen?: boolean;
joinedAt?: number;
outgoingRing: boolean;
pip: boolean;
presentingSource?: PresentedSource;
presentingSourcesAvailable?: Array<PresentableSource>;
@@ -60,7 +61,7 @@ type ActiveGroupCallType = ActiveCallBaseType & {
joinState: GroupCallJoinState;
maxDevices: number;
deviceCount: number;
groupMembers: Array<Pick<ConversationType, 'firstName' | 'title' | 'uuid'>>;
groupMembers: Array<Pick<ConversationType, 'id' | 'firstName' | 'title'>>;
peekedParticipants: Array<ConversationType>;
remoteParticipants: Array<GroupCallRemoteParticipantType>;
};