Alejandro Ferrandiz

Results 18 comments of Alejandro Ferrandiz

> For example If I find 100 vulnerabilities/possible vulnerabilities on 100 subdomains/url's how can I quickly view all of them? I'd have to sort through each subdomain one by one...

> Edit: Also being able to edit/delete vulnerability entries, mark them as investigated/viewed & label as F+ etc would be very helpful so you can track what you've done. >...

get the last version and try again please.

Hi @mariohmol. Is good to know that you can continue this work on your side. I'll check your repo when is ready. Thanks

Thanks so much @Duvel to let us know

We dont have ComplexType support yet. You need to do: `"Locations": { "latitude": "number", "longitude": "number" }` and inside "Car" `... "LocationId": { "referent": "Locations", "render": "latitude" } `

@jeffward01 @altmann. I needed to add ProblemDetails too. This is what I did following the documentation. I'm using .Net7 On `program.cs` I added my custom Profile to handle the failing...

And this is the way I'm calling my CustomError ``` var result = await userManager.CreateAsync(user, password); if (!result.Succeeded) { return Result.Fail(new InvalidUserError(httpContextAccessor.HttpContext, result.Errors)); } ``` ![image](https://github.com/altmann/FluentResults/assets/1503645/e21f42c6-4269-4565-b1f1-43660e4b8b84)