fix: add missing parameter for GetRoutesHandler

This commit is contained in:
Andrew Welker
2025-03-28 10:41:21 -05:00
parent bb045ba06b
commit 32e090648c

View File

@@ -207,7 +207,7 @@ namespace PepperDash.Essentials.Core.Web
{ {
AddRoute(new HttpCwsRoute("apiPaths") { AddRoute(new HttpCwsRoute("apiPaths") {
Name = "GetPaths", Name = "GetPaths",
RouteHandler = new GetRoutesHandler(_server.GetRouteCollection()) RouteHandler = new GetRoutesHandler(_server.GetRouteCollection(), BasePath)
}); });
// If running on an appliance // If running on an appliance