mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-12-10 18:26:23 -05:00
Recents must not show temporary fake messages
This commit is contained in:
parent
42f5b0a6b8
commit
8aa4b7bf7f
4 changed files with 32 additions and 10 deletions
|
|
@ -17,8 +17,11 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('RecentsController', ['matrixService', 'matrixFilter'])
|
||||
.controller('RecentsController', ['$rootScope',
|
||||
function($rootScope) {
|
||||
.controller('RecentsController', ['$rootScope', '$scope', 'eventHandlerService',
|
||||
function($rootScope, $scope, eventHandlerService) {
|
||||
|
||||
// Expose the service to the view
|
||||
$scope.eventHandlerService = eventHandlerService;
|
||||
|
||||
// $rootScope of the parent where the recents component is included can override this value
|
||||
// in order to highlight a specific room in the list
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue