diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-01-29 09:23:38 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-01-29 09:33:16 +0100 |
commit | 3695d025755a69dbb4940eaa8de24ce3ca559c1b (patch) | |
tree | 35cdbaab674db911c7c1d58042f9094ba652c177 /core/src/OC/index.js | |
parent | 8e9d259074619de0f137d749fc94dd4e580d2ec9 (diff) | |
download | nextcloud-server-3695d025755a69dbb4940eaa8de24ce3ca559c1b.tar.gz nextcloud-server-3695d025755a69dbb4940eaa8de24ce3ca559c1b.zip |
Move OC.EventSource 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 e7a975e0827..e988a76e273 100644 --- a/core/src/OC/index.js +++ b/core/src/OC/index.js @@ -24,6 +24,7 @@ import Backbone from 'backbone'; import Apps from './apps' import AppConfig from './appconfig' import ContactsMenu from './contactsmenu'; +import EventSource from './eventsource' import {davCall, davSync} from './backbone-webdav'; // Patch Backbone for DAV @@ -37,5 +38,6 @@ export default { Apps, AppConfig, Backbone, + EventSource, ContactsMenu, }; |