summaryrefslogtreecommitdiffstats
path: root/webapp/reducers/plugins/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/reducers/plugins/index.js')
-rw-r--r--webapp/reducers/plugins/index.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/webapp/reducers/plugins/index.js b/webapp/reducers/plugins/index.js
new file mode 100644
index 000000000..9cad72715
--- /dev/null
+++ b/webapp/reducers/plugins/index.js
@@ -0,0 +1,22 @@
+// 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
+});