allow for adding an array of middleware functions

This commit is contained in:
Kevin Godell
2020-12-22 16:30:38 -06:00
committed by GitHub
parent 34b27f2e68
commit 79b10ed18a

View File

@@ -210,7 +210,7 @@ module.exports = function(RED) {
var httpMiddleware = function(req,res,next) { next(); }
if (RED.settings.httpNodeMiddleware) {
if (typeof RED.settings.httpNodeMiddleware === "function") {
if (typeof RED.settings.httpNodeMiddleware === "function" || Array.isArray(RED.settings.httpNodeMiddleware)) {
httpMiddleware = RED.settings.httpNodeMiddleware;
}
}