Skip to content

Commit 15616b4

Browse files
authored
Merge pull request #214 from recruitans/dev
Dev
2 parents 44c351c + e4ab40f commit 15616b4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/en/Core-Mvc-Sign-In-Without-Specifying-Tenant.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Normally, **ASP.NET Zero** uses tenant information in login transactions. This d
7474
* And add following lines;
7575

7676
```csharp
77-
public async Task<int?> TryGetTenantIdOfUser(string userEmail)
77+
public async Task<int?> TryGetTenantIdOfUser(string userEmail)
7878
{
7979
using (_unitOfWorkManager.Current.DisableFilter(AbpDataFilters.MayHaveTenant))
8080
{

docs/en/Features-Mvc-Core-Entity-History.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
In change logs under audit logs menu, we can see all change logs (entity history) in the application:
44

5-
<img src="D:/Github/documents/docs/en/images/change-logs-core.png" alt="Change Logs" class="img-thumbnail" />
5+
<img src="images/change-logs-core.png" alt="Change Logs" class="img-thumbnail" />
66

77
When we click the magnifier icon, we can see all the details about a change log:
88

9-
<img src="D:/Github/documents/docs/en/images/entity-history-log-detail.png" alt="Change Log Detail" class="img-thumbnail" />
9+
<img src="images/entity-history-log-detail.png" alt="Change Log Detail" class="img-thumbnail" />
1010

1111
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**.
1212

@@ -25,7 +25,7 @@ So, in this particular case, `EntityHistoryConfigProvider` returns if entity his
2525

2626
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:
2727

28-
<img src="D:/Github/documents/docs/en/images/change-logs-history-action-item.png" alt="Entity History Action" class="img-thumbnail" />
28+
<img src="images/change-logs-history-action-item.png" alt="Entity History Action" class="img-thumbnail" />
2929

3030
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.
3131

@@ -42,7 +42,7 @@ The abp.custom.EntityHistory object contains properties below:
4242

4343
Here is a sample screenshot which show the value of **abp.custom.EntityHistory**:
4444

45-
<img src="D:/Github/documents/docs/en/images/change-logs-custom-config-result-core.png" alt="Entity history custom config" class="img-thumbnail" />
45+
<img src="images/change-logs-custom-config-result-core.png" alt="Entity history custom config" class="img-thumbnail" />
4646

4747

4848
## Next

docs/en/nav-aspnet-core-mvc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,7 @@
594594
},
595595
{
596596
"text": "File Upload",
597-
"path": "Core-Mvc-File-Upload-Tutorial.md "
597+
"path": "Core-Mvc-File-Upload-Tutorial.md"
598598
},
599599
{
600600
"text": "Sign In Without Specifying Tenant",

0 commit comments

Comments
 (0)