Re-organise user page so it is easier to find interesting info split it into tabs - Introduce notifications and messages tabs - Stop couting stuff for the user page to speed up rendering - Suppress more information when viewing your own profile
10 lines
198 B
JavaScript
10 lines
198 B
JavaScript
export default Discourse.Route.extend({
|
|
model() {
|
|
return this.modelFor("user");
|
|
},
|
|
|
|
setupController(controller, user) {
|
|
this.controllerFor("user-activity").set("model", user);
|
|
}
|
|
});
|