FEATURE: When suspending a user, allow the Delete + Replies action

Previously you could only delete the post
This commit is contained in:
Robin Ward
2019-05-27 12:27:16 -04:00
parent 192562745f
commit d95a68b837
6 changed files with 33 additions and 7 deletions

View File

@@ -1,6 +1,7 @@
import computed from "ember-addons/ember-computed-decorators";
const ACTIONS = ["delete", "edit", "none"];
const ACTIONS = ["delete", "delete_replies", "edit", "none"];
export default Ember.Component.extend({
postId: null,
postAction: null,