Skip to content

Commit

Permalink
Merge pull request #64 from abpio/cotur/documentation
Browse files Browse the repository at this point in the history
Documentation upgrade #fixing broken links
  • Loading branch information
hikalkan authored Nov 30, 2020
2 parents cf032ac + c4b56c9 commit c6c5cd5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion en/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ The solution has a layered structure (based on the [Domain Driven Design](https:

#### MongoDB Transactions

The [startup template](Startup-templates/Index.md) **disables** transactions in the `.MongoDB` project by default. If your MongoDB server supports transactions, you can enable the it in the *YourProjectMongoDbModule* class:
The [startup template](startup-templates/application/index.md) **disables** transactions in the `.MongoDB` project by default. If your MongoDB server supports transactions, you can enable the it in the *YourProjectMongoDbModule* class:

```csharp
Configure<AbpUnitOfWorkDefaultOptions>(options =>
Expand Down
2 changes: 1 addition & 1 deletion en/modules/payment.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ See [the module description page](https://commercial.abp.io/modules/Volo.Identit

## How to install

Payment module is not installed in [the startup templates](../Startup-Templates/Index). So, it needs to be installed manually. There are two ways of installing a module into your application.
Payment module is not installed in [the startup templates](../startup-templates/application/index.md). So, it needs to be installed manually. There are two ways of installing a module into your application.


### 1. Using ABP CLI
Expand Down
4 changes: 2 additions & 2 deletions en/tutorials/book-store/part-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -450,12 +450,12 @@ function configureRoutes(routes: RoutesService) {
`RoutesService` is a service provided by the ABP Framework to configure the main menu and the routes.

* `path` is the URL of the route.
* `name` is the localized menu item name (see the [localization document](../UI/Angular/Localization.md) for details).
* `name` is the localized menu item name (see the [localization document](https://docs.abp.io/en/abp/latest/UI/Angular/Localization) for details).
* `iconClass` is the icon of the menu item (you can use [Font Awesome](https://fontawesome.com/) icons by default).
* `order` is the order of the menu item.
* `layout` is the layout of the BooksModule's routes (there are three types of pre-defined layouts: `eLayoutType.application`, `eLayoutType.account` or `eLayoutType.empty`).

For more information, see the [RoutesService document](https://docs.abp.io/en/abp/latest/UI/Angular/Modifying-the-Menu.md#via-routesservice).
For more information, see the [RoutesService document](https://docs.abp.io/en/abp/latest/UI/Angular/Modifying-the-Menu#via-routesservice).

### Service Proxy Generation

Expand Down
2 changes: 1 addition & 1 deletion en/tutorials/book-store/part-4.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ This part covers the **server side** tests. There are several test projects in t
Each project is used to test the related project. Test projects use the following libraries for testing:

* [Xunit](https://xunit.github.io/) as the main test framework.
* [Shoudly](http://shouldly.readthedocs.io/en/latest/) as the assertion library.
* [Shoudly](https://docs.shouldly.io/) as the assertion library.
* [NSubstitute](http://nsubstitute.github.io/) as the mocking library.

{{if DB=="EF"}}
Expand Down
6 changes: 3 additions & 3 deletions en/tutorials/book-store/part-9.md
Original file line number Diff line number Diff line change
Expand Up @@ -978,9 +978,9 @@ Create a new Razor Component Page, `/Pages/Authors.razor`, in the `Acme.BookStor
````

* This code is similar to the `Books.razor`, except it doesn't inherit from the `BlazorisePageBase`, but uses its own implementation.
* Injects the `IAuthorAppService` to consume the server side HTTP APIs from the UI. We can directly inject application service interfaces and use just like regular method calls by the help of [Dynamic C# HTTP API Client Proxy System](../API/Dynamic-CSharp-API-Clients.md), which performs REST API calls for us. See the `Authors` class below to see the usage.
* Injects the `IAuthorizationService` to check [permissions](../Authorization.md).
* Injects the `IObjectMapper` for [object to object mapping](../Object-To-Object-Mapping.md).
* Injects the `IAuthorAppService` to consume the server side HTTP APIs from the UI. We can directly inject application service interfaces and use just like regular method calls by the help of [Dynamic C# HTTP API Client Proxy System](https://docs.abp.io/en/abp/latest/API/Dynamic-CSharp-API-Clients), which performs REST API calls for us. See the `Authors` class below to see the usage.
* Injects the `IAuthorizationService` to check [permissions](https://docs.abp.io/en/abp/latest/Authorization).
* Injects the `IObjectMapper` for [object to object mapping](https://docs.abp.io/en/abp/latest/Object-To-Object-Mapping).

Create a new code behind file, `Authors.razor.cs`, under the `Pages` folder, with the following content:

Expand Down

0 comments on commit c6c5cd5

Please sign in to comment.