0
    
    
        
                    Abdulaziz_Alsaffar created
                    
                    
                    
                
                Hi all, How to check after logged in from azure ad is user exist or not if not exist in my system keep it logged out or any message I want only users in my system can to login after azure ad
- ABP Framework version: vX.X.X
- UI Type: Angular
- Database System: EF Core (SQL Server, Oracle, MySQL, PostgreSQL, etc..) / MongoDB
- Tiered (for MVC) or Auth Server Separated (for Angular): yes/no
- Exception message and full stack trace:
- Steps to reproduce the issue:
1 Answer(s)
- 
    0hi There is an event OnSignedIn(AuthServer - MVC). You can add your logic code here.context.Services.ConfigureApplicationCookie(options => { options.Events.OnSignedIn = async cookieSignedInContext => { //... }; });
 
                                