diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-04-29 18:04:45 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-05-02 09:42:32 +0200 |
commit | 9b79aa664dcb00adf558ce6b36d7b2455134e8ee (patch) | |
tree | f14768b0df52a835c1f94fd238f82c75d52c7a36 /core/src/OC/index.js | |
parent | ac700506bd9d502a97fbee8635535dc03ce6eb92 (diff) | |
download | nextcloud-server-9b79aa664dcb00adf558ce6b36d7b2455134e8ee.tar.gz nextcloud-server-9b79aa664dcb00adf558ce6b36d7b2455134e8ee.zip |
Move oc_config to the bundle
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core/src/OC/index.js')
-rw-r--r-- | core/src/OC/index.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/src/OC/index.js b/core/src/OC/index.js index 76b244adf3d..789b5b22fa7 100644 --- a/core/src/OC/index.js +++ b/core/src/OC/index.js @@ -22,6 +22,7 @@ import Apps from './apps' import AppConfig from './appconfig' import Backbone from './backbone' +import Config from './config' import ContactsMenu from './contactsmenu' import Dialogs from './dialogs' import EventSource from './eventsource' @@ -40,6 +41,7 @@ export default { AppConfig, Backbone, ContactsMenu, + config: Config, dialogs: Dialogs, EventSource, L10N, |