diff options
author | Emmanuel ROHEE <erohee@amdocs.com> | 2014-09-12 10:12:56 +0200 |
---|---|---|
committer | Emmanuel ROHEE <erohee@amdocs.com> | 2014-09-12 10:12:56 +0200 |
commit | 6ea20f3503d56457d6b027e2404a701377a69e76 (patch) | |
tree | 96965f7d69b50be94530431a6445fb02c98a89a8 /webclient/room/room.html | |
parent | BF: temp workaround while /initialSync on a particular room is not available (diff) | |
download | synapse-6ea20f3503d56457d6b027e2404a701377a69e76.tar.xz |
Show room name updates in room history and recents.
Update it with the latest value
Diffstat (limited to 'webclient/room/room.html')
-rw-r--r-- | webclient/room/room.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/webclient/room/room.html b/webclient/room/room.html index 25a8e65b97..e8d8c3f46a 100644 --- a/webclient/room/room.html +++ b/webclient/room/room.html @@ -118,6 +118,10 @@ {{ members[msg.user_id].displayname || msg.user_id }} changed the topic to: {{ msg.content.topic }} </span> + <span ng-if="'m.room.name' === msg.type"> + {{ members[msg.user_id].displayname || msg.user_id }} changed the room name to: {{ msg.content.name }} + </span> + </div> </td> <td class="rightBlock"> |