feat(external-api) Expose meeting session (#14522)

This commit is contained in:
Horatiu Muresan
2024-03-25 13:11:59 +02:00
committed by GitHub
parent 2f6d9d4b52
commit fad58ae362
2 changed files with 17 additions and 0 deletions

View File

@@ -981,6 +981,12 @@ function initCommands() {
callback(isP2pActive(APP.store.getState()));
break;
}
case 'session-id': {
const { conference } = APP.store.getState()['features/base/conference'];
callback(conference?.getMeetingUniqueId() || '');
break;
}
case '_new_electron_screensharing_supported': {
callback(true);
break;