mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 00:29:18 +08:00
28 lines
738 B
JavaScript
28 lines
738 B
JavaScript
import { ajax } from 'discourse/lib/ajax';
|
|
export default Ember.ArrayController.extend({
|
|
sortProperties: ["name"],
|
|
|
|
actions: {
|
|
emojiUploaded(emoji) {
|
|
emoji.url += "?t=" + new Date().getTime();
|
|
this.pushObject(Ember.Object.create(emoji));
|
|
},
|
|
|
|
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 ajax("/admin/customize/emojis/" + emoji.get("name"), { type: "DELETE" }).then(function() {
|
|
self.removeObject(emoji);
|
|
});
|
|
}
|
|
}
|
|
);
|
|
}
|
|
}
|
|
});
|