Merge pull request #24 from valitydev/fx/bouncer-context

Fix fragment key
This commit is contained in:
Egor Cherniak 2022-04-04 18:26:06 +03:00 committed by GitHub
commit d2e26a4372
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,7 @@ public class BouncerContextFactory {
keycloakService.getAccessToken().getSubject());
var context = new Context();
context.putToFragments(bouncerProperties.getContextFragmentId(), fragment);
context.putToFragments("user", userFragment);
context.putToFragments("userorg", userFragment);
return context;
}