summaryrefslogtreecommitdiffstats
path: root/webapp/components/admin_console/admin_sidebar.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/admin_console/admin_sidebar.jsx')
-rw-r--r--webapp/components/admin_console/admin_sidebar.jsx16
1 files changed, 16 insertions, 0 deletions
diff --git a/webapp/components/admin_console/admin_sidebar.jsx b/webapp/components/admin_console/admin_sidebar.jsx
index 569885f98..2e7915baf 100644
--- a/webapp/components/admin_console/admin_sidebar.jsx
+++ b/webapp/components/admin_console/admin_sidebar.jsx
@@ -178,6 +178,7 @@ export default class AdminSidebar extends React.Component {
let oauthSettings = null;
let ldapSettings = null;
let samlSettings = null;
+ let clusterSettings = null;
let complianceSettings = null;
let license = null;
@@ -213,6 +214,20 @@ export default class AdminSidebar extends React.Component {
);
}
+ if (global.window.mm_license.Cluster === 'true') {
+ clusterSettings = (
+ <AdminSidebarSection
+ name='cluster'
+ title={
+ <FormattedMessage
+ id='admin.sidebar.cluster'
+ defaultMessage='High Availability'
+ />
+ }
+ />
+ );
+ }
+
if (global.window.mm_license.SAML === 'true') {
samlSettings = (
<AdminSidebarSection
@@ -656,6 +671,7 @@ export default class AdminSidebar extends React.Component {
/>
}
/>
+ {clusterSettings}
</AdminSidebarSection>
</AdminSidebarCategory>
{this.renderTeams()}