mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:30:57 +08:00
39 lines
1.0 KiB
JavaScript
39 lines
1.0 KiB
JavaScript
import ModalFunctionality from 'discourse/mixins/modal-functionality';
|
|
|
|
import ObjectController from 'discourse/controllers/object';
|
|
|
|
export default ObjectController.extend(ModalFunctionality, {
|
|
needs: ["admin-flags-list"],
|
|
|
|
actions: {
|
|
|
|
deletePostDeferFlag: function () {
|
|
var adminFlagController = this.get("controllers.admin-flags-list");
|
|
var post = this.get("content");
|
|
var self = this;
|
|
|
|
return post.deferFlags(true).then(function () {
|
|
adminFlagController.removeObject(post);
|
|
self.send("closeModal");
|
|
}, function () {
|
|
bootbox.alert(I18n.t("admin.flags.error"));
|
|
});
|
|
},
|
|
|
|
deletePostAgreeFlag: function () {
|
|
var adminFlagController = this.get("controllers.admin-flags-list");
|
|
var post = this.get("content");
|
|
var self = this;
|
|
|
|
return post.agreeFlags("delete").then(function () {
|
|
adminFlagController.removeObject(post);
|
|
self.send("closeModal");
|
|
}, function () {
|
|
bootbox.alert(I18n.t("admin.flags.error"));
|
|
});
|
|
}
|
|
|
|
}
|
|
|
|
});
|