Fixing the tenant loading problem when sso is enabled

This commit is contained in:
Megala 2016-10-03 14:18:43 +05:30
parent a0586ca977
commit e8eb0123c7

View File

@ -35,6 +35,11 @@ var onFail;
if (!context.input.samlToken) { if (!context.input.samlToken) {
(new carbonServer.Server({url: devicemgtProps["adminService"]})) (new carbonServer.Server({url: devicemgtProps["adminService"]}))
.login(context.input.username, context.input.password); .login(context.input.username, context.input.password);
} else {
var PrivilegedCarbonContext = Packages.org.wso2.carbon.context.PrivilegedCarbonContext;
PrivilegedCarbonContext.startTenantFlow();
var cxt = PrivilegedCarbonContext.getThreadLocalCarbonContext();
cxt.setTenantDomain(context.user.domain, true);
} }
}; };