From b1f1dcaab3c2b4799ef12a417a9998d7556496af Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Tue, 25 Aug 2015 17:17:04 +0200 Subject: webui: add option to establish bidirectional trust https://fedorahosted.org/freeipa/ticket/5259 Reviewed-By: Tomas Babej --- install/ui/src/freeipa/trust.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) 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 @@ -171,6 +171,12 @@ return { label: '@i18n:objects.trust.domain', 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', @@ -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' + } ] }, { -- cgit