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, {
|
2016-10-21 01:26:41 +08:00
|
|
|
adminFlagsList: Ember.inject.controller(),
|
2014-07-29 01:17:37 +08:00
|
|
|
|
2014-09-10 02:26:40 +08:00
|
|
|
_agreeFlag: function (actionOnPost) {
|
2016-10-21 01:26:41 +08:00
|
|
|
const adminFlagController = this.get("adminFlagsList");
|
|
|
|
const post = this.get("content");
|
2014-07-29 01:17:37 +08:00
|
|
|
|
2016-10-21 01:26:41 +08:00
|
|
|
return post.agreeFlags(actionOnPost).then(() => {
|
|
|
|
adminFlagController.get('model').removeObject(post);
|
|
|
|
this.send("closeModal");
|
2014-09-10 02:26:40 +08:00
|
|
|
}, function () {
|
|
|
|
bootbox.alert(I18n.t("admin.flags.error"));
|
|
|
|
});
|
|
|
|
},
|
2014-08-05 04:48:04 +08:00
|
|
|
|
2014-09-10 02:26:40 +08:00
|
|
|
actions: {
|
|
|
|
agreeFlagHidePost: function () { return this._agreeFlag("hide"); },
|
|
|
|
agreeFlagKeepPost: function () { return this._agreeFlag("keep"); },
|
|
|
|
agreeFlagRestorePost: function () { return this._agreeFlag("restore"); }
|
2014-07-29 01:17:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|