TIDE/backend/app
yisroel 5b74e9d76a
implement AuthenticateUser use case
input validation: email + password required. constructs
EmailAddress vo (BadRequest on bad format). looks up user; absent
or password-mismatch -> UnauthorizedException with constant
'invalid credentials' message (no enumeration leak). password
verified through PasswordHasher->verify against stored hash on
the User entity (no separate profile lookup -> tide keeps
password on the user row). returns the User entity for the
caller (typically CreateSession + AuthController). 27 tests
pass.
2026-05-06 15:14:34 +03:00
..
Auth implement AuthenticateUser use case 2026-05-06 15:14:34 +03:00
Exceptions add domain exception classes 2026-05-06 14:51:41 +03:00
Providers scaffold laravel 12 backend 2026-05-06 14:46:41 +03:00
Shared/ValueObject implement EmailAddress value object 2026-05-06 14:52:45 +03:00
User implement SignupUser use case 2026-05-06 15:13:26 +03:00