summaryrefslogtreecommitdiffstats
path: root/core/src/OC/index.js
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2019-04-29 17:50:34 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-05-07 09:22:47 +0200
commitae8959af74a8d7b4b6a4f282e13ab87fe35f4ff6 (patch)
tree77765467be9f058d4b9f3bf8a1a665fbf34b11cf /core/src/OC/index.js
parentc60f6716b41dde9d1d7b73077b49ad0ee71761ef (diff)
downloadnextcloud-server-ae8959af74a8d7b4b6a4f282e13ab87fe35f4ff6.tar.gz
nextcloud-server-ae8959af74a8d7b4b6a4f282e13ab87fe35f4ff6.zip
Move OC.get and OC.set 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.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/src/OC/index.js b/core/src/OC/index.js
index ab5552c8e57..548d6f544c8 100644
--- a/core/src/OC/index.js
+++ b/core/src/OC/index.js
@@ -26,6 +26,7 @@ import Config from './config'
import ContactsMenu from './contactsmenu'
import Dialogs from './dialogs'
import EventSource from './eventsource'
+import {get, set} from './get_set'
import {isUserAdmin} from './admin'
import L10N from './l10n'
import {
@@ -67,6 +68,8 @@ export default {
Util,
debug,
generateUrl,
+ get: get(window),
+ set: set(window),
getRootPath,
filePath,
redirect,