discourse/app/assets/javascripts/admin/routes/admin-emojis.js.es6

11 lines
288 B
Plaintext
Raw Normal View History

2018-06-15 23:03:24 +08:00
import { ajax } from "discourse/lib/ajax";
2014-12-23 08:12:26 +08:00
export default Discourse.Route.extend({
model: function() {
2016-07-01 01:55:44 +08:00
return ajax("/admin/customize/emojis.json").then(function(emojis) {
2018-06-15 23:03:24 +08:00
return emojis.map(function(emoji) {
return Ember.Object.create(emoji);
});
2014-12-23 08:12:26 +08:00
});
}
});