Organized 'users' functionality vertically. (#226)

This commit is contained in:
Martin Šošić
2024-07-11 12:57:30 +02:00
committed by GitHub
parent 0e4e76ae88
commit a348a85660
16 changed files with 220 additions and 213 deletions

View File

@@ -26,7 +26,7 @@ To control which pages require users to be authenticated to access them, you can
route AccountRoute { path: "/account", to: AccountPage }
page AccountPage {
authRequired: true,
component: import Account from "@src/client/app/AccountPage"
component: import Account from "@src/user/AccountPage"
}
```