summaryrefslogtreecommitdiffstats
path: root/core/src/OC/index.js
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2019-05-14 18:18:31 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-05-14 18:18:31 +0200
commit291c4a121e9aadcbfaaf380960f15561e853ecad (patch)
treed8244b92d752c7cb5841a24fa4882c5ae1843021 /core/src/OC/index.js
parentf08aed74d78cc2ec50dc74154c2862d054791882 (diff)
downloadnextcloud-server-291c4a121e9aadcbfaaf380960f15561e853ecad.tar.gz
nextcloud-server-291c4a121e9aadcbfaaf380960f15561e853ecad.zip
Move query string helpers 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.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/core/src/OC/index.js b/core/src/OC/index.js
index ea217edaf88..4a2f2c3d803 100644
--- a/core/src/OC/index.js
+++ b/core/src/OC/index.js
@@ -31,6 +31,10 @@ import {
isSamePath,
joinPaths,
} from './path'
+import {
+ build as buildQueryString,
+ parse as parseQueryString,
+} from './query-string'
import Config from './config'
import {
coreApps,
@@ -198,6 +202,12 @@ export default {
*/
addTranslations: L10N.load,
+ /**
+ * Query string helpers
+ */
+ buildQueryString,
+ parseQueryString,
+
msg,
Notification,
PasswordConfirmation,