You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pdfy/lib/middleware-auth.coffee

8 lines
187 B
CoffeeScript

errors = require "errors"
module.exports = (req, res, next) ->
if req.session?.isAdmin?
next()
else
next(new errors.NotAuthenticated("You are not logged in as an administrator."))