diff options
author | Kegan Dougal <kegan@matrix.org> | 2014-08-15 10:20:14 +0100 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2014-08-15 14:06:56 +0100 |
commit | 8bf3994c2e4726278355bc1398c4b9c94d242ad0 (patch) | |
tree | dce0066c2e6aec0e3657606468df16a439c450f8 /webclient/app.js | |
parent | Add a check to make sure that during state conflict res we only request a PDU... (diff) | |
download | synapse-8bf3994c2e4726278355bc1398c4b9c94d242ad0.tar.xz |
Added event stream service which neatly blobs together requests / state for the event stream. This depends on matrix service to do the actual hit. Currently this has exactly the same behaviour as before.
Diffstat (limited to 'webclient/app.js')
-rw-r--r-- | webclient/app.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/webclient/app.js b/webclient/app.js index 0b613fa206..547431d9b2 100644 --- a/webclient/app.js +++ b/webclient/app.js @@ -20,7 +20,8 @@ var matrixWebClient = angular.module('matrixWebClient', [ 'LoginController', 'RoomController', 'RoomsController', - 'matrixService' + 'matrixService', + 'eventStreamService' ]); matrixWebClient.config(['$routeProvider', '$provide', '$httpProvider', |