A new settings section in the review queue allows admins to specify that certain types of flags should be weighted higher than others.
10 lines
195 B
JavaScript
10 lines
195 B
JavaScript
export default Discourse.Route.extend({
|
|
model() {
|
|
return this.store.find("reviewable-settings");
|
|
},
|
|
|
|
setupController(controller, model) {
|
|
controller.set("settings", model);
|
|
}
|
|
});
|