|
@@ -26,6 +26,7 @@ const CustomBotWithoutProxySettings = (props) => {
|
|
|
siteName={siteName}
|
|
siteName={siteName}
|
|
|
slackWSNameInWithoutProxy={props.slackWSNameInWithoutProxy}
|
|
slackWSNameInWithoutProxy={props.slackWSNameInWithoutProxy}
|
|
|
isSetupSlackBot={props.isSetupSlackBot}
|
|
isSetupSlackBot={props.isSetupSlackBot}
|
|
|
|
|
+ isSlackScopeSet={props.isSlackScopeSet}
|
|
|
/>
|
|
/>
|
|
|
|
|
|
|
|
<h2 className="admin-setting-header">{t('admin:slack_integration.custom_bot_without_proxy_settings')}</h2>
|
|
<h2 className="admin-setting-header">{t('admin:slack_integration.custom_bot_without_proxy_settings')}</h2>
|
|
@@ -52,6 +53,7 @@ CustomBotWithoutProxySettings.propTypes = {
|
|
|
isRgisterSlackCredentials: PropTypes.bool,
|
|
isRgisterSlackCredentials: PropTypes.bool,
|
|
|
isConnectedToSlack: PropTypes.bool,
|
|
isConnectedToSlack: PropTypes.bool,
|
|
|
isSetupSlackBot: PropTypes.bool,
|
|
isSetupSlackBot: PropTypes.bool,
|
|
|
|
|
+ isSlackScopeSet: PropTypes.bool,
|
|
|
slackWSNameInWithoutProxy: PropTypes.string,
|
|
slackWSNameInWithoutProxy: PropTypes.string,
|
|
|
};
|
|
};
|
|
|
|
|
|