first commit

This commit is contained in:
Bastian Wagner
2026-07-31 21:02:47 +02:00
commit 6bea4f766a
512 changed files with 64459 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
# Routes
- `/` → session-dependent redirect
- `/auth/login``features/auth/login/login.ts`
- `/team-select``features/team-select/team-select.ts`
- `/team/:id/overview``features/team/overview/overview.ts`, inside authenticated App Shell
- `/team/:id/members``features/team/members/members.ts`, inside authenticated App Shell
- `/team/:id/cashbox``features/team/cashbox/cashbox.ts`, inside authenticated App Shell
- `/team/:id/more``features/team/more/more.ts`, inside authenticated App Shell
- `**` → Not Found
Planned routes include registration, forgot/reset password, member detail, penalties, invite, and public alias views.
The full router source of truth is `src/app/app.routes.ts`.