diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-04-29 17:50:34 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-05-07 09:22:47 +0200 |
commit | ae8959af74a8d7b4b6a4f282e13ab87fe35f4ff6 (patch) | |
tree | 77765467be9f058d4b9f3bf8a1a665fbf34b11cf /core/src/OC/index.js | |
parent | c60f6716b41dde9d1d7b73077b49ad0ee71761ef (diff) | |
download | nextcloud-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.js | 3 |
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, |