UNPKG

sqlpad

Version:

Web app for writing and running SQL queries and visualizing the results. Supports Postgres, MySQL, SQL Server, Crate and Vertica.

8 lines (7 loc) 174 B
module.exports = function mustBeAdmin(req, res, next) { if (req.user.role === 'admin') { next() } else { next(new Error('You must be an admin to do that')) } }