0
    
    
        
                    rferrarin created
                    
                    
                    
                
                - ABP Framework version: v7.4.4
- UI Type: Blazor Server
- Database System: EF Core (SQL Server)
- **Tiered: no
Hi, I need to execute some custom code after the user has succesfully logged in the system (basically I need to load some user-dependent constants) I couldn't find any info about doing this, can you help me? Best regards
1 Answer(s)
- 
    0You can try this: context.Services.ConfigureApplicationCookie(options => { options.Events.OnSignedIn = async signedContext => { var userId= signedContext.Principal.Identity.FindUserId(); }; });
 
                                