filters.js 209 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 module.exports=function(Filter){ Filter.define("/!(login)", ["get","post"], "common_gray", function (gray, req, res, next){ if(gray.code==200){ next(); }else{ res.redirect('/login'); } }); };