mirror of
https://ghfast.top/https://github.com/discourse/discourse-follow.git
synced 2026-07-15 11:36:38 +08:00
10 lines
294 B
JavaScript
10 lines
294 B
JavaScript
export default {
|
|
resource: "user",
|
|
map() {
|
|
this.route("follow", { resetNamespace: true }, function () {
|
|
this.route("feed", { resetNamespace: true });
|
|
this.route("followers", { resetNamespace: true });
|
|
this.route("following", { resetNamespace: true });
|
|
});
|
|
},
|
|
};
|