From 3c82ca1d128d896167e467dfdb1257ca18a42d07 Mon Sep 17 00:00:00 2001 From: Engincan VESKE <43685404+EngincanV@users.noreply.github.com> Date: Fri, 9 Dec 2022 08:46:45 +0300 Subject: [PATCH] Update Integration-Services.md --- docs/en/Integration-Services.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/en/Integration-Services.md b/docs/en/Integration-Services.md index e0e49fe9cd..386a5d10da 100644 --- a/docs/en/Integration-Services.md +++ b/docs/en/Integration-Services.md @@ -28,7 +28,7 @@ public interface IProductAppService : IApplicationService } ``` -That's all. If you are using the [Auto API Controllers](API/Auto-API-Controllers.md) feature in your application, the URL prefix will be `/integration-api` instead of `/api` for your services. Therefore, you can distinguish internal and external service communications and take additional actions, such as preventing REST API calls for integration services out of API Gateway. +That's all. If you are using the [Auto API Controllers](API/Auto-API-Controllers.md) feature in your application, the URL prefix will be `/integration-api` instead of `/api` for your services. Thus, you can distinguish internal and external service communications and take additional actions, such as preventing REST API calls for integration services out of API Gateway. ## Enabling/Disabling Audit Logging @@ -53,7 +53,7 @@ You can filter integration services (or non-integration services) while creating ```csharp Configure(options => { - options.ConventionalControllers.Create(typeof(MyAppDmoMcApplicationModule).Assembly, conventionalControllerSetting => + options.ConventionalControllers.Create(typeof(MyApplicationModule).Assembly, conventionalControllerSetting => { conventionalControllerSetting.ApplicationServiceTypes = ApplicationServiceTypes.IntegrationServices; }); @@ -65,4 +65,5 @@ Configure(options => ## See Also * [Application Services](Application-Services.md) -* [Auto API Controllers](API/Auto-API-Controllers.md) \ No newline at end of file +* [Auto API Controllers](API/Auto-API-Controllers.md) +* [Audit Logging](Audit-Logging.md) \ No newline at end of file