I've got a route working with
this.router.navigate(["/approvals", id]);
which navigates to /approvals/[id]
/approvals/[id]
I'm wondering how I can route to /approvals/[id]/users
/approvals/[id]/users
Does anyone know?
this.router.navigate(["/approvals", id, "users"])