discourse/app/assets/javascripts/admin/controllers/admin-web-hooks.js.es6
2019-05-27 10:15:39 +02:00

28 lines
601 B
JavaScript

import { popupAjaxError } from "discourse/lib/ajax-error";
export default Ember.Controller.extend({
actions: {
destroy(webhook) {
return bootbox.confirm(
I18n.t("admin.web_hooks.delete_confirm"),
I18n.t("no_value"),
I18n.t("yes_value"),
result => {
if (result) {
webhook
.destroyRecord()
.then(() => {
this.model.removeObject(webhook);
})
.catch(popupAjaxError);
}
}
);
},
loadMore() {
this.model.loadMore();
}
}
});