summaryrefslogtreecommitdiffstats
path: root/install/static/service.js
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2010-11-10 19:03:49 -0600
committerAdam Young <ayoung@redhat.com>2010-11-11 12:23:05 -0500
commitdb11592228ae6cabd4a353d7e3788a3ea0fb4262 (patch)
tree8a49357f4d2b6a15f3dfb8004c8339bb206b940d /install/static/service.js
parent65c9442e2697f9e5d8b6cc2b7c22a6b8da426247 (diff)
downloadfreeipa.git-db11592228ae6cabd4a353d7e3788a3ea0fb4262.tar.gz
freeipa.git-db11592228ae6cabd4a353d7e3788a3ea0fb4262.tar.xz
freeipa.git-db11592228ae6cabd4a353d7e3788a3ea0fb4262.zip
HBAC Service Groups
The HBAC Service Groups search, details, and association pages have been added under the HBAC tab. New test data files for HBAC Service Groups have been added. The sample metadata has been updated as well.
Diffstat (limited to 'install/static/service.js')
-rw-r--r--install/static/service.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/install/static/service.js b/install/static/service.js
index 6a79af07..f4179cb8 100644
--- a/install/static/service.js
+++ b/install/static/service.js
@@ -30,6 +30,12 @@ function ipa_service() {
that.init = function() {
+ that.create_association({
+ 'name': 'host',
+ 'add_method': 'add_host',
+ 'delete_method': 'remove_host'
+ });
+
var dialog = ipa_service_add_dialog({
'name': 'add',
'title': 'Add New Service'
@@ -54,12 +60,6 @@ function ipa_service() {
});
that.add_facet(facet);
- that.create_association({
- 'name': 'host',
- 'add_method': 'add_host',
- 'delete_method': 'remove_host'
- });
-
that.super_init();
};