budibase/packages/worker/src/middleware/adminOnly.js

6 lines
173 B
JavaScript
Raw Normal View History

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