summaryrefslogtreecommitdiffstats
path: root/webapp/components/reset_status_modal/index.js
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-09-06 23:04:13 -0700
committerChristopher Speller <crspeller@gmail.com>2017-09-06 23:11:58 -0700
commitd8bd57901e33a7057e26e782e295099ffcc0da89 (patch)
treee12dfc8cad42b1576756d19d7fbfd82646a009bf /webapp/components/reset_status_modal/index.js
parent7bc8e9a08dfde56387f946fdf5086252aa4d0491 (diff)
downloadchat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.gz
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.bz2
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.zip
Removing webapp
Diffstat (limited to 'webapp/components/reset_status_modal/index.js')
-rw-r--r--webapp/components/reset_status_modal/index.js34
1 files changed, 0 insertions, 34 deletions
diff --git a/webapp/components/reset_status_modal/index.js b/webapp/components/reset_status_modal/index.js
deleted file mode 100644
index 34f08c7a5..000000000
--- a/webapp/components/reset_status_modal/index.js
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import {connect} from 'react-redux';
-import {bindActionCreators} from 'redux';
-
-import {Preferences} from 'mattermost-redux/constants';
-import {get} from 'mattermost-redux/selectors/entities/preferences';
-
-import {savePreferences} from 'mattermost-redux/actions/preferences';
-import {setStatus} from 'mattermost-redux/actions/users';
-import {autoResetStatus} from 'actions/user_actions.jsx';
-
-import ResetStatusModal from './reset_status_modal.jsx';
-
-function mapStateToProps(state, ownProps) {
- const {currentUserId} = state.entities.users;
- return {
- ...ownProps,
- autoResetPref: get(state, Preferences.CATEGORY_AUTO_RESET_MANUAL_STATUS, currentUserId, '')
- };
-}
-
-function mapDispatchToProps(dispatch) {
- return {
- actions: bindActionCreators({
- autoResetStatus,
- setStatus,
- savePreferences
- }, dispatch)
- };
-}
-
-export default connect(mapStateToProps, mapDispatchToProps)(ResetStatusModal);