mirror of
https://github.com/discourse/discourse.git
synced 2025-01-06 02:23:50 +08:00
10 lines
197 B
Plaintext
10 lines
197 B
Plaintext
|
export default Discourse.Route.extend({
|
||
|
model() {
|
||
|
return this.store.findAll('flagged-topic');
|
||
|
},
|
||
|
|
||
|
setupController(controller, model) {
|
||
|
controller.set('flaggedTopics', model);
|
||
|
}
|
||
|
});
|