mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-08 09:15:06 +00:00
feat(essentials): Updated EssentialsVideoCodecUIDriver to display password prompt when joining password protected meeting
This commit is contained in:
@@ -1359,6 +1359,10 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
|
||||
|
||||
OnPasswordRequired(meetingNeedsPassword.WrongAndRetry, false, false, prompt);
|
||||
}
|
||||
else
|
||||
{
|
||||
OnPasswordRequired(false, false, true, "");
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
@@ -2062,6 +2066,7 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
|
||||
/// <param name="password"></param>
|
||||
public void Dial(string number, string password)
|
||||
{
|
||||
Debug.Console(2, this, "Dialing meeting number: {0} with password: {1}", number, password);
|
||||
SendText(string.Format("zCommand Dial Join meetingNumber: {0} password: {1}", number, password));
|
||||
}
|
||||
|
||||
@@ -2700,6 +2705,7 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
|
||||
|
||||
public void SubmitPassword(string password)
|
||||
{
|
||||
Debug.Console(2, this, "Password Submitted: {0}", password);
|
||||
Dial(_lastDialedMeetingNumber, password);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user