2014-08-13 07:04:36 +08:00
|
|
|
import ModalFunctionality from 'discourse/mixins/modal-functionality';
|
|
|
|
|
2015-08-12 00:27:07 +08:00
|
|
|
export default Ember.Controller.extend(ModalFunctionality, {
|
2014-11-12 04:48:13 +08:00
|
|
|
needs: ["admin-flags-list"],
|
2014-07-29 01:17:37 +08:00
|
|
|
|
|
|
|
actions: {
|
|
|
|
|
|
|
|
deletePostDeferFlag: function () {
|
2014-11-12 04:48:13 +08:00
|
|
|
var adminFlagController = this.get("controllers.admin-flags-list");
|
2014-07-29 01:17:37 +08:00
|
|
|
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 () {
|
2014-11-12 04:48:13 +08:00
|
|
|
var adminFlagController = this.get("controllers.admin-flags-list");
|
2014-07-29 01:17:37 +08:00
|
|
|
var post = this.get("content");
|
|
|
|
var self = this;
|
|
|
|
|
2014-08-05 04:48:04 +08:00
|
|
|
return post.agreeFlags("delete").then(function () {
|
2014-07-29 01:17:37 +08:00
|
|
|
adminFlagController.removeObject(post);
|
|
|
|
self.send("closeModal");
|
|
|
|
}, function () {
|
|
|
|
bootbox.alert(I18n.t("admin.flags.error"));
|
|
|
|
});
|
|
|
|
}
|
2014-08-05 04:48:04 +08:00
|
|
|
|
2014-07-29 01:17:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|