summaryrefslogtreecommitdiffstats
path: root/webapp/reducers/plugins/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/reducers/plugins/index.js
parent7bc8e9a08dfde56387f946fdf5086252aa4d0491 (diff)
downloadchat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.gz
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.tar.bz2
chat-d8bd57901e33a7057e26e782e295099ffcc0da89.zip
Removing webapp
Diffstat (limited to 'webapp/reducers/plugins/index.js')
-rw-r--r--webapp/reducers/plugins/index.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/webapp/reducers/plugins/index.js b/webapp/reducers/plugins/index.js
deleted file mode 100644
index 9cad72715..000000000
--- a/webapp/reducers/plugins/index.js
+++ /dev/null
@@ -1,22 +0,0 @@
-// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import {combineReducers} from 'redux';
-import {ActionTypes} from 'utils/constants.jsx';
-
-function components(state = {}, action) {
- switch (action.type) {
- case ActionTypes.RECEIVED_PLUGIN_COMPONENTS: {
- if (action.data) {
- return {...action.data, ...state};
- }
- return state;
- }
- default:
- return state;
- }
-}
-
-export default combineReducers({
- components
-});