mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 03:57:27 +00:00
fix: added 'CancelPasswordPrompt' join, updated linkToZoomApi
This commit is contained in:
parent
f1d1ce9722
commit
f1590aeec8
2 changed files with 16 additions and 0 deletions
|
|
@ -2495,6 +2495,8 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
|
|||
|
||||
|
||||
trilist.SetStringSigAction(joinMap.SubmitPassword.JoinNumber, SubmitPassword);
|
||||
trilist.SetStringSigAction(joinMap.CancelPasswordPrompt.JoinNumber,
|
||||
delegate { OnPasswordRequired(false, false, true, ""); });
|
||||
PasswordRequired += (devices, args) =>
|
||||
{
|
||||
if (args.LoginAttemptCancelled)
|
||||
|
|
|
|||
|
|
@ -23,6 +23,20 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
|
|||
JoinType = eJoinType.Digital
|
||||
});
|
||||
|
||||
[JoinName("CancelPasswordPrompt")]
|
||||
public JoinDataComplete CancelPasswordPrompt = new JoinDataComplete(
|
||||
new JoinData
|
||||
{
|
||||
JoinNumber = 7,
|
||||
JoinSpan = 1
|
||||
},
|
||||
new JoinMetadata
|
||||
{
|
||||
Description = "cancels password prompt",
|
||||
JoinCapabilities = eJoinCapabilities.FromSIMPL,
|
||||
JoinType = eJoinType.Digital
|
||||
});
|
||||
|
||||
// TODO [ ] Issue #868
|
||||
[JoinName("PasswordIncorrect")]
|
||||
public JoinDataComplete PasswordIncorrect = new JoinDataComplete(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue