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 9a726c65c..4918cdac0 100644
--- a/webapp/components/admin_console/admin_sidebar.jsx
+++ b/webapp/components/admin_console/admin_sidebar.jsx
@@ -60,6 +60,7 @@ export default class AdminSidebar extends React.Component {
let metricsSettings = null;
let complianceSettings = null;
let mfaSettings = null;
+ let pluginSettings = null;
let license = null;
let audits = null;
@@ -277,6 +278,20 @@ export default class AdminSidebar extends React.Component {
);
}
+ if (window.mm_config.PluginsEnabled === 'true' && window.mm_license.IsLicensed === 'true') {
+ pluginSettings = (
+ <AdminSidebarSection
+ name='plugins'
+ title={
+ <FormattedMessage
+ id='admin.sidebar.plugins'
+ defaultMessage='Plugins (experimental)'
+ />
+ }
+ />
+ );
+ }
+
const SHOW_CLIENT_VERSIONS = false;
let clientVersions = null;
if (SHOW_CLIENT_VERSIONS) {
@@ -562,6 +577,7 @@ export default class AdminSidebar extends React.Component {
/>
}
/>
+ {pluginSettings}
</AdminSidebarSection>
<AdminSidebarSection
name='files'