message_edit_history: Add UI for seeing topic edits.

Users can previously see only message content edits, this will enable
them to see topic edits too in the same section, fixes #3731.

Fixes #3731.
This commit is contained in:
Nikhil-Vats
2019-02-22 19:38:16 +05:30
committed by Tim Abbott
parent 54915b76c7
commit 38be5ea743
6 changed files with 82 additions and 12 deletions

View File

@@ -337,6 +337,10 @@ exports.get_edit_event_orig_topic = function (obj) {
return obj.orig_subject;
};
exports.get_edit_event_prev_topic = function (obj) {
return obj.prev_subject;
};
exports.is_topic_synonym = function (operator) {
return operator === 'subject';
};