|
@@ -468,6 +468,12 @@ public class OrgController extends ControllerSupport {
|
|
info.setDomainName(domain.getDomainName());
|
|
info.setDomainName(domain.getDomainName());
|
|
info.setRemark(domain.getRemark());
|
|
info.setRemark(domain.getRemark());
|
|
|
|
|
|
|
|
+ Map<String, String> properties = domain.getProperties();
|
|
|
|
+ if (null == properties) {
|
|
|
|
+ properties = Maps.newHashMap();
|
|
|
|
+ }
|
|
|
|
+ info.setProperties(properties);
|
|
|
|
+
|
|
OrgEntity saved = orgService.saveRootOrg(info);
|
|
OrgEntity saved = orgService.saveRootOrg(info);
|
|
return saved;
|
|
return saved;
|
|
}
|
|
}
|