mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
39 lines
1 KiB
JavaScript
39 lines
1 KiB
JavaScript
import ModalFunctionality from 'discourse/mixins/modal-functionality';
|
|
|
|
import ObjectController from 'discourse/controllers/object';
|
|
|
|
export default ObjectController.extend(ModalFunctionality, {
|
|
|
|
needs: ["adminFlags"],
|
|
|
|
actions: {
|
|
|
|
agreeFlagHidePost: function () {
|
|
var adminFlagController = this.get("controllers.adminFlags");
|
|
var post = this.get("content");
|
|
var self = this;
|
|
|
|
return post.agreeFlags("hide").then(function () {
|
|
adminFlagController.removeObject(post);
|
|
self.send("closeModal");
|
|
}, function () {
|
|
bootbox.alert(I18n.t("admin.flags.error"));
|
|
});
|
|
},
|
|
|
|
agreeFlagKeepPost: function () {
|
|
var adminFlagController = this.get("controllers.adminFlags");
|
|
var post = this.get("content");
|
|
var self = this;
|
|
|
|
return post.agreeFlags("keep").then(function () {
|
|
adminFlagController.removeObject(post);
|
|
self.send("closeModal");
|
|
}, function () {
|
|
bootbox.alert(I18n.t("admin.flags.error"));
|
|
});
|
|
}
|
|
|
|
}
|
|
|
|
});
|