Make work with multiple apis (or a table in no apis)

This commit is contained in:
2023-04-04 15:48:59 -05:00
parent 74529b44ca
commit 5d34f60a46
2 changed files with 108 additions and 45 deletions

View File

@ -52,5 +52,6 @@ module.exports = function (app)
app.use("/processes", getRequestHandler());
app.use("/reports", getRequestHandler());
app.use("/images", getRequestHandler());
app.use("/api", getRequestHandler());
app.use("/api*", getRequestHandler());
app.use("/*api", getRequestHandler());
};