Adds handler for getting a debug session

This commit is contained in:
Neil Dorin
2023-11-03 13:00:21 -06:00
parent 5a097e7057
commit 1727e81e33
2 changed files with 62 additions and 0 deletions

View File

@@ -145,6 +145,11 @@ namespace PepperDash.Essentials.Core.Web
Name = "GetJoinMapsForDeviceKey",
RouteHandler = new GetJoinMapForDeviceKeyRequestHandler()
},
new HttpCwsRoute("debugSession")
{
Name = "DebugSession",
RouteHandler = new DebugSessionRequestHandler()
}
};