diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-05-10 13:38:11 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-05-10 13:47:21 +0200 |
commit | 51d49c3134c9acf7e2daba5bcc8c87e14a7548f1 (patch) | |
tree | 2c74c588fbcfeb1bb3766ad4a97ab9e4e21dfdc1 /core/src/OC | |
parent | 855486d7c14ac41c3b952591cc4acbaed996c45a (diff) | |
download | nextcloud-server-51d49c3134c9acf7e2daba5bcc8c87e14a7548f1.tar.gz nextcloud-server-51d49c3134c9acf7e2daba5bcc8c87e14a7548f1.zip |
Move initCore to the bundle
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core/src/OC')
-rw-r--r-- | core/src/OC/appconfig.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/core/src/OC/appconfig.js b/core/src/OC/appconfig.js index ee7efb8a3ac..1248475ce77 100644 --- a/core/src/OC/appconfig.js +++ b/core/src/OC/appconfig.js @@ -26,7 +26,7 @@ export const appConfig = window.oc_appconfig || {} * @namespace * @deprecated 16.0.0 Use OCP.AppConfig instead */ -const AppConfig = { +export const AppConfig = { /** * @deprecated Use OCP.AppConfig.getValue() instead */ @@ -69,5 +69,3 @@ const AppConfig = { } }; - -export default AppConfig; |