diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2014-11-13 13:08:16 +0100 |
---|---|---|
committer | Tomas Babej <tbabej@redhat.com> | 2014-11-25 14:05:09 +0100 |
commit | 4d1ce9e422c139cff2ec1de798a34f13c9b6fb95 (patch) | |
tree | a6dac8fa3241360307e7a0640166ad64ccf473c9 | |
parent | bef1d18878118aea379659bb10d78c1e955b0b63 (diff) | |
download | freeipa-4d1ce9e422c139cff2ec1de798a34f13c9b6fb95.tar.gz freeipa-4d1ce9e422c139cff2ec1de798a34f13c9b6fb95.tar.xz freeipa-4d1ce9e422c139cff2ec1de798a34f13c9b6fb95.zip |
webui: add radius fields to user page
add --radius=ID --radius-username=radiusUserName to Web UI
https://fedorahosted.org/freeipa/ticket/4686
Reviewed-By: Tomas Babej <tbabej@redhat.com>
-rw-r--r-- | install/ui/src/freeipa/user.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/install/ui/src/freeipa/user.js b/install/ui/src/freeipa/user.js index be01170b7..4f53a27cf 100644 --- a/install/ui/src/freeipa/user.js +++ b/install/ui/src/freeipa/user.js @@ -159,6 +159,17 @@ return { { label: '@i18n:authtype.type_otp', value: 'otp' } ], tooltip: '@i18n:authtype.user_tooltip' + }, + { + $type: 'entity_select', + name: 'ipatokenradiusconfiglink', + flags: ['w_if_no_aci'], + other_entity: 'radiusproxy', + other_field: 'cn' + }, + { + name: 'ipatokenradiususername', + flags: ['w_if_no_aci'] } ] }, |