fix: Disable TTL For Transient OIDC Users In Permission Service (#9643)

This commit is contained in:
keltschdt 2025-09-17 20:21:36 +02:00 committed by GitHub
parent 45ab4d4503
commit 0e94d97bfb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -313,7 +313,7 @@ const ensurePrincipalExists = async function (principal) {
idOnTheSource: principal.idOnTheSource,
};
const userId = await createUser(userData, true, false);
const userId = await createUser(userData, true, true);
return userId.toString();
}