Sign in
简柏林
/
thingskit
·
Commits
GitLab
Go to dashboard
Project
Activity
Files
Commits
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Network
Download as
Email Patches
Plain Diff
Browse Files
Commit
7dd32619a57bcb9a1377178f95e225e64618e7f4
Authored by
Igor Kulikov
2021-10-08 18:20:09 +0300
1 parent
68fc5b99
Add Web UI microservice route path to handle rulenodes help assets
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
msa/web-ui/server.js
msa/web-ui/server.js
View file @
7dd3261
...
...
@@ -83,6 +83,10 @@ var server;
83
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
90
server
.
on
(
'upgrade'
,
(
req
,
socket
,
head
)
=>
{
87
91
apiProxy
.
ws
(
req
,
socket
,
head
);
88
92
});
...
...