We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
In Express app.use("/admin", auth.checkAdmin, dashboard) if auth.checkIn is failed, then it won't pass to the next function.
app.use("/admin", auth.checkAdmin, dashboard)
auth.checkIn
Will it be posible to do this with goMiddlewareChain?
goMiddlewareChain