You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Make current user available without an AuthenticationContext instance (#21503)
Makes it possible to write an application method like
```
public static Optional<User> getCurrentUser() {
return AuthenticationContext.getCurrentAuthenticatedUser(AppUserInfo.class).map(AppUserInfo::user);
}
```
instead of re-implementing everything from AuthenticationContext
0 commit comments