Crud on users
All checks were successful
Game Ideas build for PR / build_blazor_app (pull_request) Successful in 52s

This commit is contained in:
2025-04-27 19:56:17 +02:00
parent 63622bd299
commit 757e9db08d
17 changed files with 182 additions and 44 deletions

View File

@@ -29,7 +29,7 @@ public class UserWriteService(
}
else
{
throw new UserInvalidException(string.Join("; ", result.Errors));
throw new UserInvalidException(string.Join("; ", result.Errors.Select(e => $"{e.Code} {e.Description}")));
}
return userToCreate.Id;