From b3d1053fd748906414f72f2d90f44b72095574b5 Mon Sep 17 00:00:00 2001 From: Chi Vinh Le Date: Wed, 5 Apr 2017 18:57:12 +0700 Subject: [PATCH] Get rid of plugin actions in the framework --- client/coral-framework/actions/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/client/coral-framework/actions/index.js b/client/coral-framework/actions/index.js index 68b77973c..65f7b87d3 100644 --- a/client/coral-framework/actions/index.js +++ b/client/coral-framework/actions/index.js @@ -1,11 +1,9 @@ import * as authActions from './auth'; import * as assetActions from './asset'; import * as notificationActions from './notification'; -import {getPluginActions} from '../helpers/plugins'; export default { authActions, assetActions, notificationActions, - pluginActions: getPluginActions(), };