auth0-extensions/auth0-delegated-administration-extension

View on GitHub
docs/example-hooks/memberships-empty.js

Summary

Maintainability
A
0 mins
Test Coverage
/*
 * This is an empty hook which will return an empty array for the current user's memberships.
 */
function(ctx, callback) {
  return callback(null, {
    memberships: [ ]
  });
}