I am using ASPNETZERO multi-tenancy solution and I want to achieve following solution in that.
My need is like One user share all details among all Tenants.
Let's say there is user1 registered in Tenant1 with email id, password and all fields.
Now what I want is this User1 can logged in any tenant using the same login details, I mean to say user1 can login in tenant2, tenant3 etc.. But without registering again and also with same login details.
Also user can edit details in any tenant and that need to updated in all tenants.
Here is what I have planned :
I am planning to put multiple entries of same user with different tenant id in default Usertables. I mean to say, when user1 registere in tenant1 then I will copy all details of that user to all tenants. So I will create same user entry with tenant2 id, tenant3 id and so on..
I got it working by editing user-service file.
Thanks
In case of allowing a user to login to multiple tenants, the following approach can be used
Tenant1
, it means that i have a role forTenant1
and if I passTenant2
to access, the system does not find any roles associated with my user for theTenant2
, denying access (401).