|
|
@ -53,9 +53,9 @@ router |
|
|
.use(buildAuthMiddleware(PUBLIC_ENDPOINTS)) |
|
|
.use(buildAuthMiddleware(PUBLIC_ENDPOINTS)) |
|
|
// for now no public access is allowed to worker (bar health check)
|
|
|
// for now no public access is allowed to worker (bar health check)
|
|
|
.use((ctx, next) => { |
|
|
.use((ctx, next) => { |
|
|
// if (!ctx.isAuthenticated) {
|
|
|
if (!ctx.isAuthenticated) { |
|
|
// ctx.throw(403, "Unauthorized - no public worker access")
|
|
|
ctx.throw(403, "Unauthorized - no public worker access") |
|
|
// }
|
|
|
} |
|
|
return next() |
|
|
return next() |
|
|
}) |
|
|
}) |
|
|
|
|
|
|
|
|
|