summaryrefslogtreecommitdiffstats
path: root/install/static/navigation.js
diff options
context:
space:
mode:
authorEndi DeWata <edewata@redhat.com>2010-09-08 19:25:14 -0400
committerAdam Young <ayoung@redhat.com>2010-09-08 19:25:14 -0400
commit0050e2fcd957cd037e25c3ef68322a6204de7450 (patch)
treeb4bbc622755585b007e4beb7c46a820df1556464 /install/static/navigation.js
parent54b3842abac529e550b9a3d94bf240a95d8a6ba5 (diff)
downloadfreeipa.git-0050e2fcd957cd037e25c3ef68322a6204de7450.tar.gz
freeipa.git-0050e2fcd957cd037e25c3ef68322a6204de7450.tar.xz
freeipa.git-0050e2fcd957cd037e25c3ef68322a6204de7450.zip
Services
adds the Service tab: search, details, add, associations It also contains the sample data for some service operations
Diffstat (limited to 'install/static/navigation.js')
-rw-r--r--install/static/navigation.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/install/static/navigation.js b/install/static/navigation.js
index 94fe47a9..ed190778 100644
--- a/install/static/navigation.js
+++ b/install/static/navigation.js
@@ -24,6 +24,7 @@ function getParentTabs(){
host : "identity",
hostgroup: "identity",
netgroup : "identity",
+ service : "identity",
policy : "policy",
config : "config"
};
@@ -54,7 +55,8 @@ function buildNavigation(){
{name:"Hostgroups",
tab:"hostgroup",
setup: setupHostgroup},
- {name:"Netgroups",tab:"netgroup", setup:setupNetgroup}
+ {name:"Netgroups",tab:"netgroup", setup:setupNetgroup},
+ {name:"Services",tab:"service", setup:setupService}
]},
{name:"POLICY", tab:"policy", setup: unimplemented},
{name:"CONFIG", tab:"config", setup: unimplemented }];
@@ -139,6 +141,7 @@ function getSetupFunctions(){
host: setupHost,
hostgroup:setupHostgroup,
netgroup:setupNetgroup,
+ service:setupService,
};
}
return setupFunctions;
@@ -236,4 +239,4 @@ function showDetails(){
function showAssociations(){
clearOld();
$('#associations').css("display","block");
-} \ No newline at end of file
+}