Delegated Adm: "User Details" view wrong memberships

Hi João,

thanks for your response! I was able to fix this on myself already, but I couldn’t find a way to reply on my own post or editing it. This is what I came up with:

// requesting assigned memberships
if (ctx.request.user.email !== ctx.payload.user.email) {
   return callback(null, othersAccessRights);
}

// requesting list of assignable memberships (alias my own memberships)
return callback(null, assignableAccessRights);

But I have another problem which is very urgent. Can you please have a look into that issue Need to query app_metadata in Delegated Admin Extension?

Thank you in anticipation!