summaryrefslogtreecommitdiffstats
path: root/webapp/components/admin_console/ldap_settings.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-07-06 17:17:37 -0400
committerCorey Hulen <corey@hulen.com>2016-07-06 13:17:37 -0800
commit31a0f65973cf34cb17f3a4a730455e5d8f8a1b72 (patch)
treef694ada3469214f01fdc11b124f9ed85ccb4d8e8 /webapp/components/admin_console/ldap_settings.jsx
parent7b6e8d788b3edc444e84579558092974b163eb1e (diff)
downloadchat-31a0f65973cf34cb17f3a4a730455e5d8f8a1b72.tar.gz
chat-31a0f65973cf34cb17f3a4a730455e5d8f8a1b72.tar.bz2
chat-31a0f65973cf34cb17f3a4a730455e5d8f8a1b72.zip
Adding sync now button to system console (#3510)
Diffstat (limited to 'webapp/components/admin_console/ldap_settings.jsx')
-rw-r--r--webapp/components/admin_console/ldap_settings.jsx5
1 files changed, 5 insertions, 0 deletions
diff --git a/webapp/components/admin_console/ldap_settings.jsx b/webapp/components/admin_console/ldap_settings.jsx
index 393e80f29..ccb33a493 100644
--- a/webapp/components/admin_console/ldap_settings.jsx
+++ b/webapp/components/admin_console/ldap_settings.jsx
@@ -7,6 +7,8 @@ import ConnectionSecurityDropdownSetting from './connection_security_dropdown_se
import SettingsGroup from './settings_group.jsx';
import TextSetting from './text_setting.jsx';
+import SyncNowButton from './sync_now_button.jsx';
+
import * as Utils from 'utils/utils.jsx';
import React from 'react';
@@ -428,6 +430,9 @@ export default class LdapSettings extends AdminSettings {
onChange={this.handleChange}
disabled={!this.state.enable}
/>
+ <SyncNowButton
+ disabled={!this.state.enable}
+ />
</SettingsGroup>
);
}