-
I just found out about this library, and love the concept of it. However, one thing that I'm noticing is that when the validation routine is run, it's returning HTTP 400 Bad Request, and not HTTP 422 …
-
Hello,
When a POST or PUT endpoint that get it's parameters exclusively from the path, Fastendpoints always return a 415 response.
In my example, it is configured like this :
```
public cl…
-
I updated to version 5.25.0 today, from 5.23.0, and got obsolete messages about the `JWTBearer.CreateToken` method. So I changed to using `JwtBearer.CreateToken` instead. But now I got errors when try…
-
this is the endpoint point:
```
public class Endpoint(Handler handler) : Endpoint
{
public IBlobStorage provider { get; set; }
public override void Configure()
{
…
-
Something happened in the latest version, because this is now the wrong directory compared to what it would be if you debugged the service directly. It's once deeper that it should be as thus all of t…
-
Hi!
When I have endpoints with route validation like this one /{cardId:int:min(1)}/pan
i have this exception on openapi document generation
```
System.ArgumentOutOfRangeException: length ('-1') mu…
-
I configured FastEndpoints like this:
```csharp
.UseFastEndpoints(c =>
{
c.Serializer.Options.Converters.Add(new JsonStringEnumConverter());
c.Endpoints.RoutePrefix = "api";
})
```
Thi…
-
I have created this simple example where I want to unit test a server sent event endpoint.
```csharp
using FastEndpoints;
using SSE;
var bld = WebApplication.CreateBuilder();
bld.WebHost.Conf…
-
I believe title is self-explanatory.
Error I encounter (translated to english):
`Allow.b.g.cs(14,125): Error CS0246: The type or namespace name 'HideFromDocsAttribute' could not be found (are yo…
-
## Background
This bug occurs when testing publishing in conjunction with the "Usable as Activity" setting. It is challenging to reproduce as it requires the system to enter a specific locked state. …