Skip to content

Instantly share code, notes, and snippets.

@jrgleason
Created May 5, 2014 00:38
Show Gist options
  • Save jrgleason/bf783dab0d01ee619181 to your computer and use it in GitHub Desktop.
Save jrgleason/bf783dab0d01ee619181 to your computer and use it in GitHub Desktop.
Trying to get connect-roles working with my site
connectRule.use(function (req) {
if(typeof req.user !== 'undefined'){
req.user.role.active.contains('admin', function(found) {
console.log("Something was found "+found);
return found;
})
}
else{
return false;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment