Basic call link join support
This commit is contained in:
parent
2bfb6e7481
commit
96b3413feb
75 changed files with 2438 additions and 509 deletions
|
@ -2469,6 +2469,7 @@ ipc.on('get-config', async event => {
|
|||
registrationChallengeUrl: config.get<string>('registrationChallengeUrl'),
|
||||
serverPublicParams: config.get<string>('serverPublicParams'),
|
||||
serverTrustRoot: config.get<string>('serverTrustRoot'),
|
||||
genericServerPublicParams: config.get<string>('genericServerPublicParams'),
|
||||
theme,
|
||||
appStartInitialSpellcheckSetting,
|
||||
|
||||
|
@ -2619,6 +2620,10 @@ function handleSignalRoute(route: ParsedSignalRoute) {
|
|||
mainWindow.webContents.send('start-call-lobby', {
|
||||
conversationId: route.args.conversationId,
|
||||
});
|
||||
} else if (route.key === 'linkCall') {
|
||||
mainWindow.webContents.send('start-call-link', {
|
||||
key: route.args.key,
|
||||
});
|
||||
} else if (route.key === 'showWindow') {
|
||||
mainWindow.webContents.send('show-window');
|
||||
} else if (route.key === 'setIsPresenting') {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue