From dbcf8572e5af1c0c244850627437d97616098740 Mon Sep 17 00:00:00 2001 From: David Lu Date: Wed, 15 Jun 2016 05:13:47 -0700 Subject: Fixed @all not working as intended (#3335) --- .../user_settings/user_settings_notifications.jsx | 32 ---------------------- 1 file changed, 32 deletions(-) (limited to 'webapp/components/user_settings') diff --git a/webapp/components/user_settings/user_settings_notifications.jsx b/webapp/components/user_settings/user_settings_notifications.jsx index 6749180f9..1b5e78eb2 100644 --- a/webapp/components/user_settings/user_settings_notifications.jsx +++ b/webapp/components/user_settings/user_settings_notifications.jsx @@ -39,7 +39,6 @@ function getNotificationsStateFromStores() { var mentionKey = false; var customKeys = ''; var firstNameKey = false; - var allKey = false; var channelKey = false; if (user.notify_props) { @@ -67,10 +66,6 @@ function getNotificationsStateFromStores() { firstNameKey = user.notify_props.first_name === 'true'; } - if (user.notify_props.all) { - allKey = user.notify_props.all === 'true'; - } - if (user.notify_props.channel) { channelKey = user.notify_props.channel === 'true'; } @@ -87,7 +82,6 @@ function getNotificationsStateFromStores() { customKeys, customKeysChecked: customKeys.length > 0, firstNameKey, - allKey, channelKey }; } @@ -132,7 +126,6 @@ class NotificationsTab extends React.Component { this.updateUsernameKey = this.updateUsernameKey.bind(this); this.updateMentionKey = this.updateMentionKey.bind(this); this.updateFirstNameKey = this.updateFirstNameKey.bind(this); - this.updateAllKey = this.updateAllKey.bind(this); this.updateChannelKey = this.updateChannelKey.bind(this); this.updateCustomMentionKeys = this.updateCustomMentionKeys.bind(this); this.onCustomChange = this.onCustomChange.bind(this); @@ -228,9 +221,6 @@ class NotificationsTab extends React.Component { updateFirstNameKey(val) { this.setState({firstNameKey: val}); } - updateAllKey(val) { - this.setState({allKey: val}); - } updateChannelKey(val) { this.setState({channelKey: val}); } @@ -730,7 +720,6 @@ class NotificationsTab extends React.Component { let handleUpdateFirstNameKey; let handleUpdateUsernameKey; let handleUpdateMentionKey; - let handleUpdateAllKey; let handleUpdateChannelKey; if (user.first_name) { @@ -807,27 +796,6 @@ class NotificationsTab extends React.Component { ); - handleUpdateAllKey = function handleAllKeyChange(e) { - this.updateAllKey(e.target.checked); - }.bind(this); - inputs.push( -
-
- -
-
- ); - handleUpdateChannelKey = function handleChannelKeyChange(e) { this.updateChannelKey(e.target.checked); }.bind(this); -- cgit v1.2.3-1-g7c22