2014-08-12 19:04:36 -04:00
|
|
|
import ModalFunctionality from 'discourse/mixins/modal-functionality';
|
|
|
|
|
|
|
|
import ObjectController from 'discourse/controllers/object';
|
|
|
|
|
|
|
|
export default ObjectController.extend(ModalFunctionality, {
|
2014-07-28 13:17:37 -04:00
|
|
|
|
|
|
|
needs: ["adminFlags"],
|
|
|
|
|
|
|
|
actions: {
|
|
|
|
|
2014-08-04 16:48:04 -04:00
|
|
|
agreeFlagHidePost: function () {
|
2014-07-28 13:17:37 -04:00
|
|
|
var adminFlagController = this.get("controllers.adminFlags");
|
|
|
|
var post = this.get("content");
|
|
|
|
var self = this;
|
|
|
|
|
2014-08-04 16:48:04 -04:00
|
|
|
return post.agreeFlags("hide").then(function () {
|
2014-07-28 13:17:37 -04:00
|
|
|
adminFlagController.removeObject(post);
|
|
|
|
self.send("closeModal");
|
|
|
|
}, function () {
|
|
|
|
bootbox.alert(I18n.t("admin.flags.error"));
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2014-08-04 16:48:04 -04:00
|
|
|
agreeFlagKeepPost: function () {
|
2014-07-28 13:17:37 -04:00
|
|
|
var adminFlagController = this.get("controllers.adminFlags");
|
|
|
|
var post = this.get("content");
|
|
|
|
var self = this;
|
|
|
|
|
2014-08-04 16:48:04 -04:00
|
|
|
return post.agreeFlags("keep").then(function () {
|
2014-07-28 13:17:37 -04:00
|
|
|
adminFlagController.removeObject(post);
|
|
|
|
self.send("closeModal");
|
|
|
|
}, function () {
|
|
|
|
bootbox.alert(I18n.t("admin.flags.error"));
|
|
|
|
});
|
|
|
|
}
|
2014-08-04 16:48:04 -04:00
|
|
|
|
2014-07-28 13:17:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|