authgetClaims() if the request is for one of my protected pages and redirects to logingetClaims() in the component itself and redirect, since I saw mentioned that I shouldnt rely on proxy that much.getClaims() to make sure only authenticated users can call themgetClaims() and checks if the user exists and is allowed to perform the action. Some DAL methods which are sensitive like delete user or update user call getUser() instead of getClaims()getClaims() calls for a single user action. I get that it caches it after the first call but is this really the way I should be doing this? Am I overdoing it at one point or should I continue like this?