diff options
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, |