14 lines
231 B
JavaScript
14 lines
231 B
JavaScript
export default Discourse.Route.extend({
|
|
showFooter: true,
|
|
|
|
model() {
|
|
return this.modelFor("user").summary();
|
|
},
|
|
|
|
actions: {
|
|
didTransition() {
|
|
this.controllerFor("user").set("indexStream", true);
|
|
}
|
|
}
|
|
});
|