summaryrefslogtreecommitdiffstats
path: root/core/src/OCP/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/OCP/index.js')
-rw-r--r--core/src/OCP/index.js10
1 files changed, 8 insertions, 2 deletions
diff --git a/core/src/OCP/index.js b/core/src/OCP/index.js
index f4137d6ce54..6ec38668e72 100644
--- a/core/src/OCP/index.js
+++ b/core/src/OCP/index.js
@@ -1,11 +1,17 @@
/**
*
*/
-import loader from './loader'
+import * as AppConfig from './appconfig'
+import * as Comments from './comments'
import initialState from './initialstate'
+import Loader from './loader'
+import * as WhatsNew from './whatsnew'
/** @namespace OCP */
export default {
- Loader: loader,
+ AppConfig,
+ Comments,
InitialState: initialState,
+ Loader,
+ WhatsNew,
};