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

26 lines
653 B
Plaintext
Raw Normal View History

2014-12-23 08:12:26 +08:00
export default Ember.ArrayController.extend({
sortProperties: ["name"],
actions: {
emojiUploaded(emoji) {
this.pushObject(Em.Object.create(emoji));
2014-12-23 08:12:26 +08:00
},
destroy(emoji) {
const self = this;
return bootbox.confirm(
I18n.t("admin.emoji.delete_confirm", { name: emoji.get("name") }),
I18n.t("no_value"),
I18n.t("yes_value"),
function(destroy) {
if (destroy) {
return Discourse.ajax("/admin/customize/emojis/" + emoji.get("name"), { type: "DELETE" }).then(function() {
self.removeObject(emoji);
});
}
2014-12-23 08:12:26 +08:00
}
);
2014-12-23 08:12:26 +08:00
}
}
});