From 63a1b7e46c4da1a6c37db5ccf6ab1bfab8a54322 Mon Sep 17 00:00:00 2001 From: Wojciech Klusek Date: Mon, 11 Dec 2023 09:24:08 +0100 Subject: [PATCH] Remove unnecessary sentence --- docs/cqrs/pipeline/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cqrs/pipeline/index.md b/docs/cqrs/pipeline/index.md index 48005667..7e9b1909 100644 --- a/docs/cqrs/pipeline/index.md +++ b/docs/cqrs/pipeline/index.md @@ -11,7 +11,7 @@ The LeanCode CoreLibrary utilizes ASP.NET middlewares to create customized pipel ## Configuration -CQRS objects can only be registered in the ASP.NET request pipeline via endpoint routing. To register use `IEndpointRouteBuilder.MapRemoteCqrs(...)` extension method (this differs from `UseEndpoints(...)`, as within minimal startup, you can directly invoke it). In `MapRemoteCqrs(...)` you can configure the inner cqrs requests pipeline. In the following example, app is configured to handle: +CQRS objects can only be registered in the ASP.NET request pipeline via endpoint routing. To register use `IEndpointRouteBuilder.MapRemoteCqrs(...)` extension method. In `MapRemoteCqrs(...)` you can configure the inner cqrs requests pipeline. In the following example, app is configured to handle: - [Commands] at `/api/command/FullyQualifiedName` - [Queries] at `/api/query/FullyQualifiedName`