mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
14 lines
281 B
JavaScript
14 lines
281 B
JavaScript
import { ajax } from "discourse/lib/ajax";
|
|
|
|
export default Discourse.Route.extend({
|
|
model() {
|
|
return ajax("/admin/reports").then(json => {
|
|
return json;
|
|
});
|
|
},
|
|
|
|
setupController(controller, model) {
|
|
controller.setProperties({ model: model.reports });
|
|
}
|
|
});
|