Skip to content

Instantly share code, notes, and snippets.

@davidknipe
Created February 15, 2015 21:35
Show Gist options
  • Select an option

  • Save davidknipe/5cda034e43a01a51187a to your computer and use it in GitHub Desktop.

Select an option

Save davidknipe/5cda034e43a01a51187a to your computer and use it in GitHub Desktop.
Example Auth0 rule
function (user, context, callback) {
user.roles = [];
if (user.name.indexOf('Jones') > -1)
{
user.roles.push('WebAdmins');
user.roles.push('WebEditors');
}
// all users are member of public
user.roles.push('MemberOfPublic');
callback(null, user, context);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment