0
    
    
        
                    rivz created
                    
                    
                    
                
                - ABP Framework version: v8.1.1
 - UI Type: Blazor Server
 - Database System: EF Core (PostgreSQL)
 - Tiered (for MVC) or Auth Server Separated (for Angular): yes
 
Is it possible for a tenant to impersonate other tenants? I know that host can impersonate other tenants, but lets say i have "tenant1", "tenant2" and "tenant3" I would like to have "tenant2" to access "tenant1" and "tenant3" admin account. Similar to user impersonation.
2 Answer(s)
- 
    0
Hello,
In the ABP Framework, the multi-tenancy feature is designed to isolate tenants from each other. This means that by default, one tenant cannot access the data or impersonate another tenant. This is a fundamental security feature of multi-tenancy.
if you want to develop such scenario you would need to implement this functionality yourself.
thanks
 - 
    0
Thank you!