Files

12 lines
225 B
JavaScript
Raw Permalink Normal View History

2024-12-13 17:00:17 +01:00
export default function () {
this.route(
"user",
{ path: "/u/:username", resetNamespace: true },
function () {
this.route("userActivity", function () {
this.route("rewind");
});
}
);
}