summaryrefslogtreecommitdiffstats
path: root/webapp/reducers
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/reducers')
-rw-r--r--webapp/reducers/index.js4
-rw-r--r--webapp/reducers/plugins/index.js22
2 files changed, 25 insertions, 1 deletions
diff --git a/webapp/reducers/index.js b/webapp/reducers/index.js
index ff2eb0d50..eb245d851 100644
--- a/webapp/reducers/index.js
+++ b/webapp/reducers/index.js
@@ -2,7 +2,9 @@
// See License.txt for license information.
import views from './views';
+import plugins from './plugins';
export default {
- views
+ views,
+ plugins
};
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
+});