Commit 7dd32619a57bcb9a1377178f95e225e64618e7f4
1 parent
68fc5b99
Add Web UI microservice route path to handle rulenodes help assets
Showing
1 changed file
with
4 additions
and
0 deletions
@@ -83,6 +83,10 @@ var server; | @@ -83,6 +83,10 @@ var server; | ||
83 | apiProxy.web(req, res); | 83 | apiProxy.web(req, res); |
84 | }); | 84 | }); |
85 | 85 | ||
86 | + app.all('/assets/help/*/rulenode/*', (req, res) => { | ||
87 | + apiProxy.web(req, res); | ||
88 | + }); | ||
89 | + | ||
86 | server.on('upgrade', (req, socket, head) => { | 90 | server.on('upgrade', (req, socket, head) => { |
87 | apiProxy.ws(req, socket, head); | 91 | apiProxy.ws(req, socket, head); |
88 | }); | 92 | }); |