diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2015-08-25 17:17:04 +0200 |
---|---|---|
committer | Martin Basti <mbasti@redhat.com> | 2015-08-26 13:05:51 +0200 |
commit | d7b096486e05defc1de2cc3c9f5582061b8e4060 (patch) | |
tree | b4db4db0b7f60576598c31352d6da0e0f429d0f4 /install | |
parent | d01f18d4417e3073f31981dedfc8a200b3a42eb9 (diff) | |
download | freeipa-d7b096486e05defc1de2cc3c9f5582061b8e4060.tar.gz freeipa-d7b096486e05defc1de2cc3c9f5582061b8e4060.tar.xz freeipa-d7b096486e05defc1de2cc3c9f5582061b8e4060.zip |
webui: add option to establish bidirectional trust
https://fedorahosted.org/freeipa/ticket/5259
Reviewed-By: Tomas Babej <tbabej@redhat.com>
Diffstat (limited to 'install')
-rw-r--r-- | install/ui/src/freeipa/trust.js | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/install/ui/src/freeipa/trust.js b/install/ui/src/freeipa/trust.js index 51cfefb99..f26e2f21b 100644 --- a/install/ui/src/freeipa/trust.js +++ b/install/ui/src/freeipa/trust.js @@ -172,6 +172,12 @@ return { widget: 'realm.realm_server' }, { + $type: 'checkbox', + name: 'bidirectional', + metadata: '@mc-opt:trust_add:bidirectional', + widget: 'realm.bidirectional' + }, + { name: 'realm_admin', label: '@i18n:objects.trust.account', widget: 'method.realm_admin' @@ -224,7 +230,12 @@ return { $type: 'details_section', name: 'realm', widgets: [ - 'realm_server' + 'realm_server', + { + $type: 'checkbox', + name: 'bidirectional', + tooltip: '@mc-opt:trust_add:bidirectional:doc' + } ] }, { |