discourse/app/assets/javascripts/admin/addon/controllers/admin-web-hooks.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
699 B
JavaScript
Raw Normal View History

import Controller from "@ember/controller";
2016-06-16 01:49:57 +08:00
import I18n from "I18n";
import bootbox from "bootbox";
2016-06-16 01:49:57 +08:00
import { popupAjaxError } from "discourse/lib/ajax-error";
export default Controller.extend({
2016-06-16 01:49:57 +08:00
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);
2016-06-16 01:49:57 +08:00
})
.catch(popupAjaxError);
2018-06-15 23:03:24 +08:00
}
2016-06-16 01:49:57 +08:00
}
);
},
loadMore() {
this.model.loadMore();
2016-06-16 01:49:57 +08:00
},
},
});