summaryrefslogtreecommitdiffstats
path: root/webapp/components/admin_console
diff options
context:
space:
mode:
authorJonathan <jonfritz@gmail.com>2017-07-31 11:51:43 -0400
committerHarrison Healey <harrisonmhealey@gmail.com>2017-07-31 11:51:43 -0400
commitd01261a228fd6cda693623a85832bd567693512e (patch)
tree473326274476f3ae54382e59403fd8b5e9c832f1 /webapp/components/admin_console
parent8d7dcf44e2c6951a501c74dca21d453f2f9966e4 (diff)
downloadchat-d01261a228fd6cda693623a85832bd567693512e.tar.gz
chat-d01261a228fd6cda693623a85832bd567693512e.tar.bz2
chat-d01261a228fd6cda693623a85832bd567693512e.zip
PLT-7177: Change the default email frequency to 15 minutes if batching is enabled on the server. (#7036)
* PLT-7177: Found default preference that needs to be changed * PLT-7177: Front end behaves as desired * PLT-7177: Changed default batching interval on server side * PLT-7177: Added unit tests for new default interval * PLT-7177: Removed unused import * PLT-7177: Renamed constants to increase clarity
Diffstat (limited to 'webapp/components/admin_console')
-rw-r--r--webapp/components/admin_console/email_settings.jsx6
1 files changed, 2 insertions, 4 deletions
diff --git a/webapp/components/admin_console/email_settings.jsx b/webapp/components/admin_console/email_settings.jsx
index d7694ebb6..e48bc46ab 100644
--- a/webapp/components/admin_console/email_settings.jsx
+++ b/webapp/components/admin_console/email_settings.jsx
@@ -21,9 +21,7 @@ export default class EmailSettings extends AdminSettings {
super(props);
this.getConfigFromState = this.getConfigFromState.bind(this);
-
this.handleSaved = this.handleSaved.bind(this);
-
this.renderSettings = this.renderSettings.bind(this);
}
@@ -138,11 +136,11 @@ export default class EmailSettings extends AdminSettings {
<FormattedHTMLMessage
key='admin.email.enableEmailBatchingDesc'
id='admin.email.enableEmailBatchingDesc'
- defaultMessage='When true, users can have email notifications for multiple direct messages and mentions combined into a single email, configurable in <b>Account Settings > Notifications</b>.'
+ defaultMessage='When true, users will have email notifications for multiple direct messages and mentions combined into a single email. Batching will occur at a default interval of 15 minutes, configurable in Account Settings > Notifications.'
/>,
enableEmailBatchingDisabledText
]}
- value={this.state.enableEmailBatching && !this.props.config.ClusterSettings.Enable && this.props.config.ServiceSettings.SiteURL}
+ value={this.state.enableEmailBatching && !this.props.config.ClusterSettings.Enable && Boolean(this.props.config.ServiceSettings.SiteURL)}
onChange={this.handleChange}
disabled={!this.state.sendEmailNotifications || this.props.config.ClusterSettings.Enable || !this.props.config.ServiceSettings.SiteURL}
/>