cancel
Showing results for 
Search instead for 
Did you mean: 

Multi tenancy Super Admin Issue

pp20218
Champ in-the-making
Champ in-the-making
Hi All,

I am implementing the multi tenancy feature in Alfresco. I created the tenants in Alfresco.But the Super admin can't able to view the users inside the tenants.

Can anyone help me how to get it done?

Regards
PP
4 REPLIES 4

savic_prvoslav
Champ on-the-rise
Champ on-the-rise
that is normal thing, you have authentificationuril runAs feature so you can access other tenants, you just call servis to get all users . you have solution for this on the forum somewhere.

pp20218
Champ in-the-making
Champ in-the-making
Thanks for your reply.

I couldn't get you.Can you make me understand pls.You mean to say the feature is already existing?

Thanks

savic_prvoslav
Champ on-the-rise
Champ on-the-rise
this fearure does not extist of cource. but you can develop it if you want.

AuthenticationUtil.runAs(new RunAsWork<List>()
      {
         public NodeRef doWork() throws Exception
         {
          PersonService.getalllpeople();
         }
      }, "admin@tenant"));


this would be how to read users from any tenant, you just have to add rest of coding …..

pp20218
Champ in-the-making
Champ in-the-making
Thanks for the reply ..

I will look into.