From 9e5df1b9ec3e4c4f8a19ef7d0fa85a4b4f879fb3 Mon Sep 17 00:00:00 2001 From: alirizaadiyahsi Date: Thu, 21 Jan 2021 00:27:51 +0300 Subject: [PATCH 1/3] Update Core-Mvc-Sign-In-Without-Specifying-Tenant.md --- docs/en/Core-Mvc-Sign-In-Without-Specifying-Tenant.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/Core-Mvc-Sign-In-Without-Specifying-Tenant.md b/docs/en/Core-Mvc-Sign-In-Without-Specifying-Tenant.md index ffff8452..c0863d7c 100644 --- a/docs/en/Core-Mvc-Sign-In-Without-Specifying-Tenant.md +++ b/docs/en/Core-Mvc-Sign-In-Without-Specifying-Tenant.md @@ -74,7 +74,7 @@ Normally, **ASP.NET Zero** uses tenant information in login transactions. This d * And add following lines; ```csharp -public async Task TryGetTenantIdOfUser(string userEmail) + public async Task TryGetTenantIdOfUser(string userEmail) { using (_unitOfWorkManager.Current.DisableFilter(AbpDataFilters.MayHaveTenant)) { From 70e689d401499db3e2e07bf12fb72c7bbd95122e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0smail=20=C3=87A=C4=9EDA=C5=9E?= Date: Thu, 21 Jan 2021 09:52:00 +0300 Subject: [PATCH 2/3] remove empty space --- docs/en/nav-aspnet-core-mvc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/nav-aspnet-core-mvc.json b/docs/en/nav-aspnet-core-mvc.json index 3873cae4..8f8e2c3b 100644 --- a/docs/en/nav-aspnet-core-mvc.json +++ b/docs/en/nav-aspnet-core-mvc.json @@ -594,7 +594,7 @@ }, { "text": "File Upload", - "path": "Core-Mvc-File-Upload-Tutorial.md " + "path": "Core-Mvc-File-Upload-Tutorial.md" }, { "text": "Sign In Without Specifying Tenant", From e4ab40fb4a8a4be2227224e159f4f35c27a6817b Mon Sep 17 00:00:00 2001 From: Serdar GENC Date: Tue, 26 Jan 2021 11:07:40 +0300 Subject: [PATCH 3/3] Update Features-Mvc-Core-Entity-History.md Fixed broken image link --- docs/en/Features-Mvc-Core-Entity-History.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/en/Features-Mvc-Core-Entity-History.md b/docs/en/Features-Mvc-Core-Entity-History.md index c33cfcd1..2ce7196c 100644 --- a/docs/en/Features-Mvc-Core-Entity-History.md +++ b/docs/en/Features-Mvc-Core-Entity-History.md @@ -2,11 +2,11 @@ In change logs under audit logs menu, we can see all change logs (entity history) in the application: -Change Logs +Change Logs When we click the magnifier icon, we can see all the details about a change log: -Change Log Detail +Change Log Detail You should add entity type that you want to track to ***.Core\EntityHistory\EntityHistoryHelper.TrackedTypes**. Make sure you uncomment following lines in ***.EntityFrameworkCore\EntityFrameworkCore\{YourProjectName}EntityFrameworkCoreModule.cs** and set **Configuration.EntityHistory.IsEnabled** to **true**. @@ -25,7 +25,7 @@ So, in this particular case, `EntityHistoryConfigProvider` returns if entity his For example, when entity history is enabled for an Entity, Angular client shows history dropdown menu item for each entity record on the related page. Here is a sample screenshot for role list: -Entity History Action +Entity History Action In this way, history of an entity can be retrieved both on change logs tab in audit logs page or on the list page of the entity itself. @@ -42,7 +42,7 @@ The abp.custom.EntityHistory object contains properties below: Here is a sample screenshot which show the value of **abp.custom.EntityHistory**: -Entity history custom config +Entity history custom config ## Next