diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-01-31 18:01:45 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-02-01 07:55:16 +0100 |
commit | 4fcadd27b05f0b2c2d1e56a15235670ade12e888 (patch) | |
tree | 290aa489dc9e381d68542e4de95439f0a9777d92 /core/src/OC/index.js | |
parent | 2124ff65b673698dcb305b835b3ba4bbd438c074 (diff) | |
download | nextcloud-server-4fcadd27b05f0b2c2d1e56a15235670ade12e888.tar.gz nextcloud-server-4fcadd27b05f0b2c2d1e56a15235670ade12e888.zip |
Move OC.Notification to the server 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 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/src/OC/index.js b/core/src/OC/index.js index ba63780a879..c4c283ad332 100644 --- a/core/src/OC/index.js +++ b/core/src/OC/index.js @@ -25,6 +25,7 @@ import Backbone from './backbone' import ContactsMenu from './contactsmenu' import EventSource from './eventsource' import L10N from './l10n' +import Notification from './notification' /** @namespace OC */ export default { @@ -34,4 +35,5 @@ export default { ContactsMenu, EventSource, L10N, + Notification, } |