Hi, we are trying to create a new user type that is responsible for certain tentants only (he is like a host but is responsible for certain tenants not all), so how can we acomplish that without changing the tenant filters and abp structure?
4 Answer(s)
-
1
If I understand what you mean correctly, I think you can use Host users to do these things, You can assign some tenants (TenantId) to some users (UserId) Then the Host user makes a judgment when operating the tenant.
-
0
Yes, the way we made it is that we created a Sector, the sector has tenants. And we created a SectorUser with tenantID = null (host) and Role is (SectorUser) we want him to see the tenants under his Sector.
-
0
You can either create a dynamic filter or you can directly filter records on the related page.
-
0
Awesome thanks