From 55031d16aff5de0b5f86fbf5c1deab9e17560e91 Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Thu, 29 Sep 2022 12:33:42 -0600 Subject: [PATCH] docs(essentials): Add join name to printjoinmap and update description on StartMeetingNow join --- .../PepperDashEssentialsBase/JoinMaps/JoinMapBase.cs | 3 ++- .../VideoCodec/ZoomRoom/ZoomRoomJoinMap.cs | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/essentials-framework/Essentials Core/PepperDashEssentialsBase/JoinMaps/JoinMapBase.cs b/essentials-framework/Essentials Core/PepperDashEssentialsBase/JoinMaps/JoinMapBase.cs index aa8e2e6d..04abc7f8 100644 --- a/essentials-framework/Essentials Core/PepperDashEssentialsBase/JoinMaps/JoinMapBase.cs +++ b/essentials-framework/Essentials Core/PepperDashEssentialsBase/JoinMaps/JoinMapBase.cs @@ -283,9 +283,10 @@ namespace PepperDash.Essentials.Core foreach (var join in joins) { Debug.Console(0, - @"Join Number: {0} | JoinSpan: '{1}' | Description: '{2}' | Type: '{3}' | Capabilities: '{4}'", + @"Join Number: {0} | JoinSpan: '{1}' | JoinName: {2} | Description: '{3}' | Type: '{4}' | Capabilities: '{5}'", join.Value.JoinNumber, join.Value.JoinSpan, + join.Key, String.IsNullOrEmpty(join.Value.AttributeName) ? join.Value.Metadata.Label : join.Value.AttributeName, join.Value.Metadata.JoinType.ToString(), join.Value.Metadata.JoinCapabilities.ToString()); diff --git a/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/ZoomRoom/ZoomRoomJoinMap.cs b/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/ZoomRoom/ZoomRoomJoinMap.cs index 7affd835..878f88d5 100644 --- a/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/ZoomRoom/ZoomRoomJoinMap.cs +++ b/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/ZoomRoom/ZoomRoomJoinMap.cs @@ -101,7 +101,7 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom }, new JoinMetadata { - Description = "FB Indicates the password prompt is active", + Description = "Pulse to start an ad-hoc meeting with the default duration", JoinCapabilities = eJoinCapabilities.FromSIMPL, JoinType = eJoinType.Digital });