mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:30:57 +08:00
10 lines
197 B
JavaScript
10 lines
197 B
JavaScript
export default Discourse.Route.extend({
|
|
model() {
|
|
return this.store.findAll('flagged-topic');
|
|
},
|
|
|
|
setupController(controller, model) {
|
|
controller.set('flaggedTopics', model);
|
|
}
|
|
});
|