diff options
author | Petr VobornÃk <pvoborni@redhat.com> | 2012-02-15 15:00:16 +0100 |
---|---|---|
committer | Petr Vobornik <pvoborni@redhat.com> | 2012-02-29 12:59:13 +0100 |
commit | 25bda1e860a55faa7975cf37b69a74f2c138d309 (patch) | |
tree | 992cd60b9f51a61f24039a73ce76869a2ad12cbf /install/ui/webui.js | |
parent | 43bbbf749d41a26a71c84e53b2c5f0f5dfdb4524 (diff) | |
download | freeipa.git-25bda1e860a55faa7975cf37b69a74f2c138d309.tar.gz freeipa.git-25bda1e860a55faa7975cf37b69a74f2c138d309.tar.xz freeipa.git-25bda1e860a55faa7975cf37b69a74f2c138d309.zip |
New UI for DNS global configuration
UI for DNS global configuration was implemented.
https://fedorahosted.org/freeipa/ticket/2350
Diffstat (limited to 'install/ui/webui.js')
-rw-r--r-- | install/ui/webui.js | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/install/ui/webui.js b/install/ui/webui.js index 6850ff5a..b8394d28 100644 --- a/install/ui/webui.js +++ b/install/ui/webui.js @@ -40,10 +40,9 @@ IPA.admin_navigation = function(spec) { {entity: 'hostgroup'}, {entity: 'netgroup'}, {entity: 'service'}, - {name:'dns', - label: IPA.messages.tabs.dns, - children:[ - {entity: 'dnszone', hidden:true}, + {name:'dns', label: IPA.messages.tabs.dns, children:[ + {entity: 'dnszone'}, + {entity: 'dnsconfig'}, {entity: 'dnsrecord', hidden:true} ] } @@ -63,9 +62,9 @@ IPA.admin_navigation = function(spec) { {name:'automount', label: IPA.messages.tabs.automount, children:[ - {entity: 'automountlocation', hidden:true}, - {entity: 'automountmap', hidden: true}, - {entity: 'automountkey', hidden: true}]}, + {entity: 'automountlocation', hidden:true, depth: -1}, + {entity: 'automountmap', hidden: true, depth: -1}, + {entity: 'automountkey', hidden: true, depth: -1}]}, {entity: 'pwpolicy'}, {entity: 'krbtpolicy'}, {entity: 'selinuxusermap'}, |