diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-05-14 18:18:31 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-05-14 18:18:31 +0200 |
commit | 291c4a121e9aadcbfaaf380960f15561e853ecad (patch) | |
tree | d8244b92d752c7cb5841a24fa4882c5ae1843021 /core/src/OC/index.js | |
parent | f08aed74d78cc2ec50dc74154c2862d054791882 (diff) | |
download | nextcloud-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.js | 10 |
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, |