6 lines
126 B
JavaScript
6 lines
126 B
JavaScript
export default Discourse.Route.extend({
|
|
model() {
|
|
return this.store.findAll("flagged-post", { filter: "old" });
|
|
}
|
|
});
|