summaryrefslogtreecommitdiffstats
path: root/install
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2013-09-18 18:55:33 +0200
committerAlexander Bokovoy <abokovoy@redhat.com>2014-02-11 15:02:52 +0200
commit4d63a6d42d5a2e2d1500d3e97219f28f91766959 (patch)
tree94f17686533b3c110e780c134559e54413b02404 /install
parente2fc5e8ac9259d37a1f2d9462eec7135b342973b (diff)
downloadfreeipa-4d63a6d42d5a2e2d1500d3e97219f28f91766959.tar.gz
freeipa-4d63a6d42d5a2e2d1500d3e97219f28f91766959.tar.xz
freeipa-4d63a6d42d5a2e2d1500d3e97219f28f91766959.zip
UI for managing user-auth types
https://fedorahosted.org/freeipa/ticket/3369
Diffstat (limited to 'install')
-rw-r--r--install/ui/src/freeipa/serverconfig.js6
-rw-r--r--install/ui/src/freeipa/user.js6
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']
}
]
},