2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-08 12:06:51 +08:00
discourse/app/assets/javascripts/admin/controllers/admin-agree-flag.js.es6

45 lines
1.1 KiB
Text
Raw Normal View History

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