diff options
author | Nathaniel McCallum <npmccallum@redhat.com> | 2014-11-13 02:42:55 -0500 |
---|---|---|
committer | Petr Vobornik <pvoborni@redhat.com> | 2015-02-12 10:31:24 +0100 |
commit | 9549a5984b5b1d7106035d8126a3ead915b2129b (patch) | |
tree | d05a9db3eab30231d8949a40fd2c9190f2f9276d /install/ui | |
parent | c438d9be9152d64408e8e39ba4ebe696d0d4fe94 (diff) | |
download | freeipa-9549a5984b5b1d7106035d8126a3ead915b2129b.tar.gz freeipa-9549a5984b5b1d7106035d8126a3ead915b2129b.tar.xz freeipa-9549a5984b5b1d7106035d8126a3ead915b2129b.zip |
Expose the disabled User Auth Type
Additionally, fix a small bug in ipa-kdb so that the disabled User
Auth Type is properly handled.
https://fedorahosted.org/freeipa/ticket/4720
Reviewed-By: Petr Vobornik <pvoborni@redhat.com>
Diffstat (limited to 'install/ui')
-rw-r--r-- | install/ui/src/freeipa/serverconfig.js | 1 | ||||
-rw-r--r-- | install/ui/test/data/ipa_init.json | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/install/ui/src/freeipa/serverconfig.js b/install/ui/src/freeipa/serverconfig.js index d134c8882..efe180569 100644 --- a/install/ui/src/freeipa/serverconfig.js +++ b/install/ui/src/freeipa/serverconfig.js @@ -78,6 +78,7 @@ return { name: 'ipauserauthtype', flags: ['w_if_no_aci'], options: [ + { label: '@i18n:authtype.type_disabled', value: 'disabled' }, { label: '@i18n:authtype.type_password', value: 'password' }, { label: '@i18n:authtype.type_radius', value: 'radius' }, { label: '@i18n:authtype.type_otp', value: 'otp' } diff --git a/install/ui/test/data/ipa_init.json b/install/ui/test/data/ipa_init.json index bbe334b7d..036543129 100644 --- a/install/ui/test/data/ipa_init.json +++ b/install/ui/test/data/ipa_init.json @@ -53,6 +53,7 @@ "type_otp": "Two factor authentication (password + OTP)", "type_password": "Password", "type_radius": "Radius", + "type_disabled": "Disable per-user override", "user_tooltip": "Per-user setting, overwrites the global setting if any option is checked." }, "buttons": { |