puts GetJoinMapForDevice method back into JoinMapHelper

This commit is contained in:
Andrew Welker
2020-05-06 14:00:56 -06:00
parent 2eacaec577
commit 2519fffb58

View File

@@ -27,6 +27,16 @@ namespace PepperDash.Essentials.Core
return joinMap;
}
/// <summary>
/// Attempts to get the serialized join map from config
/// </summary>
/// <param name="joinMapKey"></param>
/// <returns></returns>
public static string GetJoinMapForDevice(string joinMapKey)
{
return GetSerializedJoinMapForDevice(joinMapKey);
}
/// <summary>
/// Attempts to find a custom join map by key and returns it deserialized if found
/// </summary>