Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
JAForbes committed Apr 30, 2024
1 parent 6cf46fb commit 3a4450f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions readme.md
Expand Up @@ -373,12 +373,12 @@ const Root = superouter.create({
"/:organization_id",
});

const LoggedIn = A.LoggedIn.create({
const LoggedIn = Root.LoggedIn.create({
Admin: "/admin",
Projects: "/projects",
});

const Admin = B.Admin.create({
const Admin = LoggedIn.Admin.create({
Organizations: "/organizations",
Roles: (_: { role_id: string }) => "/roles/:role_id",
Groups: (_: { group_id: string }) => "/groups/:group_id",
Expand Down

0 comments on commit 3a4450f

Please sign in to comment.