UNPKG

sqlpad

Version:

Web app. Write SQL and visualize the results. Supports Postgres, MySQL, SQL Server, Crate, Vertica and SAP HANA.

12 lines (10 loc) 276 B
const mustBeAuthenticated = require('./must-be-authenticated'); module.exports = [ mustBeAuthenticated, function mustBeAdmin(req, res, next) { if (req.user.role === 'admin') { return next(); } return res.status(403).json({ error: 'Forbidden' }); } ];