When registry-user.controller.getUser is called by the registryUser endpoint
router.get('/registryUser/:identifier',
it does not grab that identifier(a user UUID)'s org
instead it calls
const org = identifier
? await repo.getOrg(identifier, true)
which attempts to grab the org using the user UUID which will never be correct.
When registry-user.controller.getUser is called by the registryUser endpoint
router.get('/registryUser/:identifier',it does not grab that identifier(a user UUID)'s org
instead it calls
which attempts to grab the org using the user UUID which will never be correct.