discourse/app/assets/javascripts/admin/controllers/admin-agree-flag.js.es6

45 lines
1.1 KiB
Plaintext
Raw Normal View History

/**
2014-08-05 04:48:04 +08:00
The modal for agreeing with a flag.
2014-08-05 04:48:04 +08:00
@class AdminAgreeFlagController
@extends Discourse.Controller
@namespace Discourse
@uses Discourse.ModalFunctionality
@module Discourse
**/
2014-08-05 04:48:04 +08:00
export default Discourse.ObjectController.extend(Discourse.ModalFunctionality, {
needs: ["adminFlags"],
actions: {
2014-08-05 04:48:04 +08:00
agreeFlagHidePost: function () {
var adminFlagController = this.get("controllers.adminFlags");
var post = this.get("content");
var self = this;
2014-08-05 04:48:04 +08:00
return post.agreeFlags("hide").then(function () {
adminFlagController.removeObject(post);
self.send("closeModal");
}, function () {
bootbox.alert(I18n.t("admin.flags.error"));
});
},
2014-08-05 04:48:04 +08:00
agreeFlagKeepPost: function () {
var adminFlagController = this.get("controllers.adminFlags");
var post = this.get("content");
var self = this;
2014-08-05 04:48:04 +08:00
return post.agreeFlags("keep").then(function () {
adminFlagController.removeObject(post);
self.send("closeModal");
}, function () {
bootbox.alert(I18n.t("admin.flags.error"));
});
}
2014-08-05 04:48:04 +08:00
}
});