mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 03:05:25 +08:00
bf91532260
- Remove ArrayController - Remove {{view}} from templates - Replace many cases of needs: [‘controller’] with inject - Enable Ember Legacy Views
25 lines
790 B
JavaScript
25 lines
790 B
JavaScript
import ModalFunctionality from 'discourse/mixins/modal-functionality';
|
|
|
|
export default Ember.Controller.extend(ModalFunctionality, {
|
|
adminFlagsList: Ember.inject.controller(),
|
|
|
|
_agreeFlag: function (actionOnPost) {
|
|
const adminFlagController = this.get("adminFlagsList");
|
|
const post = this.get("content");
|
|
|
|
return post.agreeFlags(actionOnPost).then(() => {
|
|
adminFlagController.get('model').removeObject(post);
|
|
this.send("closeModal");
|
|
}, function () {
|
|
bootbox.alert(I18n.t("admin.flags.error"));
|
|
});
|
|
},
|
|
|
|
actions: {
|
|
agreeFlagHidePost: function () { return this._agreeFlag("hide"); },
|
|
agreeFlagKeepPost: function () { return this._agreeFlag("keep"); },
|
|
agreeFlagRestorePost: function () { return this._agreeFlag("restore"); }
|
|
}
|
|
|
|
});
|