diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2013-09-18 18:55:33 +0200 |
---|---|---|
committer | Petr Viktorin <pviktori@redhat.com> | 2014-03-12 17:29:28 +0100 |
commit | 57021d1a501bd311ebb8e702fb38234fd0766ff0 (patch) | |
tree | 353a55100876b910dc8ebe8dd3f56e9c6daef9fb /install | |
parent | ea66f48987e9fd4a7235697f845826692faef4da (diff) | |
download | freeipa-57021d1a501bd311ebb8e702fb38234fd0766ff0.tar.gz freeipa-57021d1a501bd311ebb8e702fb38234fd0766ff0.tar.xz freeipa-57021d1a501bd311ebb8e702fb38234fd0766ff0.zip |
UI for managing user-auth types
https://fedorahosted.org/freeipa/ticket/3369
Reviewed-By: Adam Misnyovszki <amisnyov@redhat.com>
Diffstat (limited to 'install')
-rw-r--r-- | install/ui/src/freeipa/serverconfig.js | 6 | ||||
-rw-r--r-- | install/ui/src/freeipa/user.js | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/install/ui/src/freeipa/serverconfig.js b/install/ui/src/freeipa/serverconfig.js index 7dea5d1f5..89c89eda9 100644 --- a/install/ui/src/freeipa/serverconfig.js +++ b/install/ui/src/freeipa/serverconfig.js @@ -74,6 +74,12 @@ return { ]) }, { + $type: 'checkboxes', + name: 'ipauserauthtype', + flags: ['w_if_no_aci'], + options: ['password', 'radius', 'otp'] + }, + { $type: 'checkbox', name: 'ipamigrationenabled' }, diff --git a/install/ui/src/freeipa/user.js b/install/ui/src/freeipa/user.js index ecd82296e..e0d6cd435 100644 --- a/install/ui/src/freeipa/user.js +++ b/install/ui/src/freeipa/user.js @@ -145,6 +145,12 @@ return { $type: 'sshkeys', name: 'ipasshpubkey', label: '@i18n:objects.sshkeystore.keys' + }, + { + $type: 'checkboxes', + name: 'ipauserauthtype', + flags: ['w_if_no_aci'], + options: ['password', 'radius', 'otp'] } ] }, |