Victorio Berra

Results 94 issues of Victorio Berra

Are OPTIONS action needed for CORS pre-flight requests? See here: https://github.com/Dotnet-Boxed/Templates/blob/master/Source/Content/ApiTemplate/Controllers/CarsController.cs#L24-L64 ```csharp /// /// Returns an Allow HTTP header with the allowed HTTP methods. /// /// A 200 OK response....

help wanted

Should the handler be aware of HTTP/"Rest"? I might argue that the controller should try and retrieve the entity and then throw `NotFound()`; https://github.com/gothinkster/aspnetcore-realworld-example-app/blob/master/src/Conduit/Features/Articles/Edit.cs#L56

I noticed that all the validators run as expected during Model Binding (probably because of `.AddFluentValidation(cfg => { cfg.RegisterValidatorsFromAssemblyContaining(); });`) and they never even have a chance to make it...

https://github.com/hugorodrigues/lxc.js/blob/master/lxc.js#L40 cbComplete, cbData get passed to sysExec and line up with onData, onClose. onData gets called multiple times by the child library (cbStdout, cbError - these should not both write...

I might just be missing it, but what is config exactly? I looks like its ignored. https://github.com/hugorodrigues/lxc.js/blob/master/lxc.js#L40

Lets say using the [example here](https://github.com/phatcher/CsvReader#sql-bulk-copy) I did not want to include a row if the Column `OpenPrice` was `< 100.00`. Is this possible?

question

Instead of callbacks for the event listeners, it would be incredibly useful to be able to promisify them. Bluebird's promisifyAll doesnt work because the callbacks are not nodeback style. Is...

request
enhancement

I cant search local sources. Maybe a --source flag? or check the global nuget.config? I can do `dotnet add package ABC` and it works but `dotnet search ABC` does not.

**Is your feature request related to a problem? Please describe.** The following code throws the following thread error: ```csharp host.OnStepError += async (workflow, step, exception) => { logger.LogError(exception, "Step error...

Hello, regarding #101 we need to be able to change the email content type from multipart/mixed to multipart/related. Is there an overload, or an option when building an email to...