UNPKG

egress-bootstrap

Version:

A minimal Express app template for a user account system, built with Twitter's Bootstrap.

8 lines 174 B
module.exports = function () { return { get: function (req, res) { delete req.session.userID; res.redirect("/signin"); } }; };