emoji: Remove display_url from the context of admin_emoji_list.

This attribute seem to be artifact of some refactoring that we did
but forgot to remove it. Just a minor cleanup.
This commit is contained in:
Harshit Bansal
2018-08-10 08:01:17 +00:00
committed by Tim Abbott
parent 3e5e7a0b19
commit 44694653ae
3 changed files with 1 additions and 3 deletions

View File

@@ -272,7 +272,7 @@ var event_fixtures = {
type: 'realm_emoji', type: 'realm_emoji',
realm_emoji: { realm_emoji: {
airplane: { airplane: {
display_url: 'some_url', source_url: 'some_url',
}, },
}, },
}, },

View File

@@ -172,7 +172,6 @@ run_test('admin_emoji_list', () => {
emoji: { emoji: {
name: "MouseFace", name: "MouseFace",
display_name: "MouseFace", display_name: "MouseFace",
display_url: "http://emojipedia-us.s3.amazonaws.com/cache/46/7f/467fe69069c408e07517621f263ea9b5.png",
source_url: "http://emojipedia-us.s3.amazonaws.com/cache/46/7f/467fe69069c408e07517621f263ea9b5.png", source_url: "http://emojipedia-us.s3.amazonaws.com/cache/46/7f/467fe69069c408e07517621f263ea9b5.png",
}, },
}; };

View File

@@ -67,7 +67,6 @@ exports.populate_emoji = function (emoji_data) {
name: data.name, name: data.name,
display_name: data.name.replace(/_/g, ' '), display_name: data.name.replace(/_/g, ' '),
source_url: data.source_url, source_url: data.source_url,
display_url: data.source_url,
author: data.author || '', author: data.author || '',
can_admin_emoji: can_admin_emoji(data), can_admin_emoji: can_admin_emoji(data),
}, },