Merge pull request #9037 from jitsi/tavram/sip-invite-password

feat(sip-invite) add room password for sip invite requests
This commit is contained in:
Avram Tudor 2021-04-20 15:36:44 +03:00 committed by GitHub
commit ef4af415a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -177,6 +177,7 @@ export function invite(
sipInviteUrl,
jwt,
conference.options.name,
conference.password,
displayName
);

View File

@ -812,6 +812,7 @@ export function isSharingEnabled(sharingFeature: string) {
* @param {string} sipInviteUrl - The invite service that generates the invitation.
* @param {string} jwt - The jwt token.
* @param {string} roomName - The name to the conference.
* @param {string} roomPassword - The password of the conference.
* @param {string} displayName - The user display name.
* @returns {Promise} - The promise created by the request.
*/
@ -821,6 +822,7 @@ export function inviteSipEndpoints( // eslint-disable-line max-params
sipInviteUrl: string,
jwt: string,
roomName: string,
roomPassword: String,
displayName: string
): Promise<void> {
if (inviteItems.length === 0) {
@ -840,7 +842,8 @@ export function inviteSipEndpoints( // eslint-disable-line max-params
callUrlInfo: {
baseUrl,
callName: roomName
}
},
passcode: roomPassword
},
sipClientParams: {
displayName,