refactor: stricer domain: notifications

This commit is contained in:
2026-04-11 14:23:50 +02:00
parent 98ed8eeb68
commit db7e683504
30 changed files with 953 additions and 71 deletions

View File

@@ -7,10 +7,12 @@ Handles user authentication (login and registration) against the configured serv
```
authentication/
├── application/
│ └── authentication.service.ts HTTP login/register against the active server endpoint
│ └── services/
│ └── authentication.service.ts HTTP login/register against the active server endpoint
├── domain/
│ └── authentication.model.ts LoginResponse interface
│ └── models/
│ └── authentication.model.ts LoginResponse interface
├── feature/
│ ├── login/ Login form component
@@ -39,7 +41,7 @@ graph TD
Auth --> SD
Login --> Store
click Auth "application/authentication.service.ts" "HTTP login/register" _blank
click Auth "application/services/authentication.service.ts" "HTTP login/register" _blank
click Login "feature/login/" "Login form" _blank
click Register "feature/register/" "Registration form" _blank
click UserBar "feature/user-bar/" "Current user display" _blank