UNPKG

sails

Version:

API-driven framework for building realtime apps, using MVC conventions (based on Express and Socket.io)

10 lines (9 loc) 159 B
/** * Fake Auth Policy Fixture * * Fakes an Authentication */ module.exports = function(req, res, next) { req.session.authenticated = true; next(); };