2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-07 12:02:53 +08:00

FEATURE: New 'Reviewable' model to make reviewable items generic

Includes support for flags, reviewable users and queued posts, with REST API
backwards compatibility.

Co-Authored-By: romanrizzi <romanalejandro@gmail.com>
Co-Authored-By: jjaffeux <j.jaffeux@gmail.com>
This commit is contained in:
Robin Ward 2019-01-03 12:03:01 -05:00
parent 9a56b398a1
commit b58867b6e9
354 changed files with 8090 additions and 5225 deletions

View file

@ -13,7 +13,6 @@ export default Ember.Controller.extend(CanCheckEmails, {
availableGroups: null,
userTitleValue: null,
showApproval: setting("must_approve_users"),
showBadges: setting("enable_badges"),
hasLockedTrustLevel: Ember.computed.notEmpty(
"model.manual_locked_trust_level"
@ -215,9 +214,6 @@ export default Ember.Controller.extend(CanCheckEmails, {
target_user: this.get("model.username")
});
},
showFlagsReceived() {
this.get("adminTools").showFlagsReceived(this.get("model"));
},
showSuspendModal() {
this.get("adminTools").showSuspendModal(this.get("model"));
},