TIDE/backend/app
yisroel a108b29d19
implement SignupUser use case
validates email present + format (wraps EmailAddress vo's
InvalidArgumentException as BadRequest), password present +
>= 8 chars, then ensures email not already registered. hashes
password through injected PasswordHasher and persists via
UserRepository->create with isAdmin=false (admins are seeder-
only per plan). throws DomainException on duplicate email so
the controller layer can map it to 409. all 18 tests pass.
2026-05-06 15:13:26 +03:00
..
Auth add Session entity, persistence, fake 2026-05-06 15:12:07 +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