0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 07:41:11 +02:00
discourse-custom-wizard/assets/javascripts/discourse/controllers/admin-wizards.js.es6
2021-10-19 13:49:06 +01:00

20 Zeilen
546 B
JavaScript

import Controller from "@ember/controller";
import { popupAjaxError } from "discourse/lib/ajax-error";
import { ajax } from "discourse/lib/ajax";
export default Controller.extend({
actions: {
dismissNotice(noticeId) {
ajax(`/admin/wizards/notice/${this.id}`, {
type: "DELETE",
})
.then((result) => {
if (result.success) {
const notices = this.notices;
notices.removeObject(notices.findBy("id", noticeId));
}
})
.catch(popupAjaxError);
},
},
});