summaryrefslogtreecommitdiffstats
path: root/core/src/OC/index.js
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2019-01-29 09:23:38 +0100
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-01-29 09:33:16 +0100
commit3695d025755a69dbb4940eaa8de24ce3ca559c1b (patch)
tree35cdbaab674db911c7c1d58042f9094ba652c177 /core/src/OC/index.js
parent8e9d259074619de0f137d749fc94dd4e580d2ec9 (diff)
downloadnextcloud-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.js2
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,
};