2018-06-15 11:03:24 -04:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
2014-12-22 19:12:26 -05:00
|
|
|
export default Discourse.Route.extend({
|
|
|
|
model: function() {
|
2016-06-30 13:55:44 -04:00
|
|
|
return ajax("/admin/customize/emojis.json").then(function(emojis) {
|
2018-06-15 11:03:24 -04:00
|
|
|
return emojis.map(function(emoji) {
|
|
|
|
return Ember.Object.create(emoji);
|
|
|
|
});
|
2014-12-22 19:12:26 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|