12 lines
225 B
JavaScript
12 lines
225 B
JavaScript
export default function () {
|
|
this.route(
|
|
"user",
|
|
{ path: "/u/:username", resetNamespace: true },
|
|
function () {
|
|
this.route("userActivity", function () {
|
|
this.route("rewind");
|
|
});
|
|
}
|
|
);
|
|
}
|