Skip to content

Commit

Permalink
#409 added more mandatory fields for ssh / jclouds
Browse files Browse the repository at this point in the history
  • Loading branch information
jstrachan committed Jul 25, 2013
1 parent 22d0081 commit 4b06936
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions hawtio-web/src/main/webapp/app/fabric/js/schemaConfigure.ts
Expand Up @@ -7,5 +7,11 @@ module Fabric {
angular.forEach(["name", "jmxUser", "jmxPassword"], (name) => {
Core.pathSet(org_fusesource_fabric_api_CreateChildContainerOptions, ["properties", name, "required"], true);
});
angular.forEach(["name", "user", "password"], (name) => {
Core.pathSet(org_fusesource_fabric_api_CreateJCloudsContainerOptions, ["properties", name, "required"], true);
});
angular.forEach(["name", "user", "password"], (name) => {
Core.pathSet(org_fusesource_fabric_api_CreateSshContainerOptions, ["properties", name, "required"], true);
});
}
}

0 comments on commit 4b06936

Please sign in to comment.