1
0
Fork 0
mirror of synced 2024-06-30 03:50:37 +12:00
budibase/packages/worker/src/middleware/adminOnly.js

7 lines
174 B
JavaScript

module.exports = async (ctx, next) => {
if (!ctx.user || !ctx.user.admin || !ctx.user.admin.global) {
ctx.throw(403, "Admin user only endpoint.")
}
return next()
}