You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by yu...@apache.org on 2015/05/10 18:16:04 UTC

ambari git commit: AMBARI-11029. Kerberos Wizard: Hide create_attributes_template when not configuring for Active Directory. (rlevas via yusaku)

Repository: ambari
Updated Branches:
  refs/heads/trunk 02cd3ae9a -> 3383a2f58


AMBARI-11029. Kerberos Wizard: Hide create_attributes_template when not configuring for Active Directory. (rlevas via yusaku)


Project: http://git-wip-us.apache.org/repos/asf/ambari/repo
Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/3383a2f5
Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/3383a2f5
Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/3383a2f5

Branch: refs/heads/trunk
Commit: 3383a2f58d0f41d7e36969b35a68e9d3f5ec0713
Parents: 02cd3ae
Author: Yusaku Sako <yu...@hortonworks.com>
Authored: Sun May 10 09:15:41 2015 -0700
Committer: Yusaku Sako <yu...@hortonworks.com>
Committed: Sun May 10 09:15:41 2015 -0700

----------------------------------------------------------------------
 ambari-web/app/controllers/main/admin/kerberos/step2_controller.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/3383a2f5/ambari-web/app/controllers/main/admin/kerberos/step2_controller.js
----------------------------------------------------------------------
diff --git a/ambari-web/app/controllers/main/admin/kerberos/step2_controller.js b/ambari-web/app/controllers/main/admin/kerberos/step2_controller.js
index f9f8b54..100c797 100644
--- a/ambari-web/app/controllers/main/admin/kerberos/step2_controller.js
+++ b/ambari-web/app/controllers/main/admin/kerberos/step2_controller.js
@@ -101,7 +101,7 @@ App.KerberosWizardStep2Controller = App.WizardStep7Controller.extend({
    */
   showAdConfigs: function (configs) {
     var kdcType = this.get('content.kerberosOption');
-    var configNames = ['ldap_url', 'container_dn'];
+    var configNames = ['ldap_url', 'container_dn', 'create_attributes_template'];
     configNames.forEach(function (_configName) {
       var config = configs.findProperty('name', _configName);
       config.isVisible = kdcType === Em.I18n.t('admin.kerberos.wizard.step1.option.ad');