Skip to content

Commit

Permalink
DOC replace .html by .md
Browse files Browse the repository at this point in the history
Signed-off-by: Pierre Noël <petersg83@gmail.com>
  • Loading branch information
petersg83 committed Jul 21, 2020
1 parent ab70206 commit 7e040ee
Show file tree
Hide file tree
Showing 18 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion docs/3.0.0-beta.x/concepts/configurations.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ You can access the config of the current environment through `strapi.config.curr

This file lets you define database connections that will be used to store your application content.

You can find [supported database and versions](../installation/cli.html#databases) in the local installation process.
You can find [supported database and versions](../installation/cli.md#databases) in the local installation process.

**Path —** `./config/environments/**/database.json`.

Expand Down
10 changes: 5 additions & 5 deletions docs/3.0.0-beta.x/concepts/services.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module.exports = {
```

- `params` (object): this represent filters for your find request.<br>
The object follow the URL query format, [refer to this documentation.](../content-api/parameters.html).
The object follow the URL query format, [refer to this documentation.](../content-api/parameters.md).

```json
{
Expand Down Expand Up @@ -75,7 +75,7 @@ module.exports = {
```

- `params` (object): this represent filters for your find request.<br>
The object follow the URL query format, [refer to this documentation.](../content-api/parameters.html).
The object follow the URL query format, [refer to this documentation.](../content-api/parameters.md).

```json
{
Expand Down Expand Up @@ -110,7 +110,7 @@ module.exports = {
```

- `params` (object): this represent filters for your find request.<br>
The object follow the URL query format, [refer to this documentation.](../content-api/parameters.html).
The object follow the URL query format, [refer to this documentation.](../content-api/parameters.md).

```json
{
Expand Down Expand Up @@ -229,7 +229,7 @@ module.exports = {
```

- `params` (object): this represent filters for your find request.<br>
The object follow the URL query format, [refer to this documentation.](../content-api/parameters.html).
The object follow the URL query format, [refer to this documentation.](../content-api/parameters.md).

```json
{
Expand Down Expand Up @@ -261,7 +261,7 @@ module.exports = {
```

- `params` (object): this represent filters for your find request.<br>
The object follow the URL query format, [refer to this documentation.](../content-api/parameters.html).
The object follow the URL query format, [refer to this documentation.](../content-api/parameters.md).

```json
{
Expand Down
2 changes: 1 addition & 1 deletion docs/3.0.0-beta.x/getting-started/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Get ready to get Strapi up and running in **less than 5 minutes** 🚀.

_For a step-by-step guide, please take a look at the [detailed tutorial](quick-start-tutorial.md)._

(Before continuing, please make sure [Node.js and npm are properly installed](../installation/cli.html#step-1-make-sure-requirements-are-met) on your machine. You can [install the Yarn v1.2.0+ package here](https://yarnpkg.com/en/).)
(Before continuing, please make sure [Node.js and npm are properly installed](../installation/cli.md#step-1-make-sure-requirements-are-met) on your machine. You can [install the Yarn v1.2.0+ package here](https://yarnpkg.com/en/).)

## 1. Install Strapi and Create a new project

Expand Down
2 changes: 1 addition & 1 deletion docs/3.0.0-beta.x/global-strapi/api-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Returns the Router (Joi router) instance.

## strapi.server

Returns the [`http.Server`](https://nodejs.org/api/http.html#http_class_http_server) instance.
Returns the [`http.Server`](https://nodejs.org/api/http.md#http_class_http_server) instance.

## strapi.services

Expand Down
2 changes: 1 addition & 1 deletion docs/3.0.0-beta.x/guides/custom-data-response.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ After saving the new function, let's restart the `GET /restaurants` request. We

We now know the function we have to update, but we just want to customize the returned restaurant values.

In the [controller documentation](../concepts/controllers.html#extending-a-model-controller) you will find the default implementation of every actions. It will help you overwrite the fetch logic.
In the [controller documentation](../concepts/controllers.md#extending-a-model-controller) you will find the default implementation of every actions. It will help you overwrite the fetch logic.

**Path —** `./api/restaurant/controller/Restaurant.js`

Expand Down
2 changes: 1 addition & 1 deletion docs/3.0.0-beta.x/guides/draft.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ After saving the new function, let's restart the `GET /articles` request. We wil

We now know the function we have to update, but we just want to customize the returned article values.

In the [controller documentation](../concepts/controllers.html#extending-a-model-controller) you will find the default implementation of every action. It will help you overwrite the fetch logic.
In the [controller documentation](../concepts/controllers.md#extending-a-model-controller) you will find the default implementation of every action. It will help you overwrite the fetch logic.

**Path —** `./api/article/controller/Article.js`

Expand Down
4 changes: 2 additions & 2 deletions docs/3.0.0-beta.x/guides/is-owner.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ When we are creating a new Article via `POST /articles` we will need to set the
To do so we will customize the `create` controller function of the Article API.

**Concepts we will use:**
Here is the code of [core controllers](../concepts/controllers.html#core-controllers).
We will also use this [documentation](../plugins/users-permissions.html#user-object-in-strapi-context) to access the current authenticated user information.
Here is the code of [core controllers](../concepts/controllers.md#core-controllers).
We will also use this [documentation](../plugins/users-permissions.md#user-object-in-strapi-context) to access the current authenticated user information.

**Path —** `./api/article/controllers/Article.js`

Expand Down
2 changes: 1 addition & 1 deletion docs/3.0.0-beta.x/guides/send-email.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ After saving the new function, let's restart the `POST /comment` request. We wil

We now know the function we have to update. Let's get back to the original function.

In the [controller documentation](../concepts/controllers.html#extending-a-model-controller) you will find the default implementation of every action. It will help you overwrite the create logic.
In the [controller documentation](../concepts/controllers.md#extending-a-model-controller) you will find the default implementation of every action. It will help you overwrite the create logic.

**Path —** `./api/comment/controller/Comment.js`

Expand Down
2 changes: 1 addition & 1 deletion docs/3.0.0-beta.x/plugins/graphql.md
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ query {
To simplify and automate the build of the GraphQL schema, we introduced the Shadow CRUD feature. It automatically generates the type definition, queries, mutations and resolvers based on your models. The feature also lets you make complex query with many arguments such as `limit`, `sort`, `start` and `where`.

::: tip NOTE
If you use a local plugin, the controller methods of your plugin are not created by default. In order for the Shadow CRUD to work you have to define them in your controllers for each of your models. You can find examples of controllers `findOne`, `find`, `create`, `update` and `delete` there : [Core controllers](../concepts/controllers.html#core-controllers).
If you use a local plugin, the controller methods of your plugin are not created by default. In order for the Shadow CRUD to work you have to define them in your controllers for each of your models. You can find examples of controllers `findOne`, `find`, `create`, `update` and `delete` there : [Core controllers](../concepts/controllers.md#core-controllers).
:::

### Example
Expand Down
2 changes: 1 addition & 1 deletion docs/v3.x/concepts/configurations.md
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ module.exports = (bookshelf, connection) => {

This file lets you define database connections that will be used to store your application content.

You can find [supported database and versions](../installation/cli.html#databases) in the local installation process.
You can find [supported database and versions](../installation/cli.md#databases) in the local installation process.

**Path —** `./config/database.js`.

Expand Down
2 changes: 1 addition & 1 deletion docs/v3.x/getting-started/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Get ready to get Strapi up and running in **less than 5 minutes** 🚀.

_For a step-by-step guide, please take a look at the [detailed tutorial](quick-start-tutorial.md)._

(Before continuing, please make sure [Node.js and npm are properly installed](../installation/cli.html#step-1-make-sure-requirements-are-met) on your machine. You can [install the Yarn v1.2.0+ package here](https://yarnpkg.com/en/).)
(Before continuing, please make sure [Node.js and npm are properly installed](../installation/cli.md#step-1-make-sure-requirements-are-met) on your machine. You can [install the Yarn v1.2.0+ package here](https://yarnpkg.com/en/).)

## 1. Install Strapi and Create a new project

Expand Down
2 changes: 1 addition & 1 deletion docs/v3.x/global-strapi/api-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Returns the Router (Joi router) instance.

## strapi.server

Returns the [`http.Server`](https://nodejs.org/api/http.html#http_class_http_server) instance.
Returns the [`http.Server`](https://nodejs.org/api/http.md#http_class_http_server) instance.

## strapi.services

Expand Down
2 changes: 1 addition & 1 deletion docs/v3.x/guides/custom-data-response.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ After saving the new function, let's restart the `GET /restaurants` request. We

We now know the function we have to update, but we just want to customize the returned restaurant values.

In the [controller documentation](../concepts/controllers.html#extending-a-model-controller) you will find the default implementation of every actions. It will help you overwrite the fetch logic.
In the [controller documentation](../concepts/controllers.md#extending-a-model-controller) you will find the default implementation of every actions. It will help you overwrite the fetch logic.

**Path —** `./api/restaurant/controller/Restaurant.js`

Expand Down
2 changes: 1 addition & 1 deletion docs/v3.x/guides/draft.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ After saving the new function, let's restart the `GET /articles` request. We wil

We now know the function we have to update, but we just want to customize the returned article values.

In the [controller documentation](../concepts/controllers.html#extending-a-model-controller) you will find the default implementation of every action. It will help you overwrite the fetch logic.
In the [controller documentation](../concepts/controllers.md#extending-a-model-controller) you will find the default implementation of every action. It will help you overwrite the fetch logic.

**Path —** `./api/article/controller/Article.js`

Expand Down
4 changes: 2 additions & 2 deletions docs/v3.x/guides/is-owner.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ When we are creating a new Article via `POST /articles` we will need to set the
To do so we will customize the `create` controller function of the Article API.

**Concepts we will use:**
Here is the code of [core controllers](../concepts/controllers.html#core-controllers).
We will also use this [documentation](../plugins/users-permissions.html#user-object-in-strapi-context) to access the current authenticated user information.
Here is the code of [core controllers](../concepts/controllers.md#core-controllers).
We will also use this [documentation](../plugins/users-permissions.md#user-object-in-strapi-context) to access the current authenticated user information.

**Path —** `./api/article/controllers/Article.js`

Expand Down
2 changes: 1 addition & 1 deletion docs/v3.x/guides/send-email.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ After saving the new function, let's restart the `POST /comment` request. We wil

We now know the function we have to update. Let's get back to the original function.

In the [controller documentation](../concepts/controllers.html#extending-a-model-controller) you will find the default implementation of every action. It will help you overwrite the create logic.
In the [controller documentation](../concepts/controllers.md#extending-a-model-controller) you will find the default implementation of every action. It will help you overwrite the create logic.

**Path —** `./api/comment/controller/Comment.js`

Expand Down
2 changes: 1 addition & 1 deletion docs/v3.x/plugins/graphql.md
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ query {
To simplify and automate the build of the GraphQL schema, we introduced the Shadow CRUD feature. It automatically generates the type definition, queries, mutations and resolvers based on your models. The feature also lets you make complex query with many arguments such as `limit`, `sort`, `start` and `where`.

::: tip NOTE
If you use a local plugin, the controller methods of your plugin are not created by default. In order for the Shadow CRUD to work you have to define them in your controllers for each of your models. You can find examples of controllers `findOne`, `find`, `create`, `update` and `delete` there : [Core controllers](../concepts/controllers.html#core-controllers).
If you use a local plugin, the controller methods of your plugin are not created by default. In order for the Shadow CRUD to work you have to define them in your controllers for each of your models. You can find examples of controllers `findOne`, `find`, `create`, `update` and `delete` there : [Core controllers](../concepts/controllers.md#core-controllers).
:::

### Example
Expand Down
2 changes: 1 addition & 1 deletion docs/v3.x/plugins/users-permissions.md
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ Congrats, you're done!
### Email validation

:::tip NOTE
In production, make sure the `url` config property is set. Otherwise the validation link will redirect to `localhost`. More info on the config [here](../concepts/configurations.html#server).
In production, make sure the `url` config property is set. Otherwise the validation link will redirect to `localhost`. More info on the config [here](../concepts/configurations.md#server).
:::

After having registered, if you have set **Enable email confirmation** to **ON**, the user will receive a confirmation link by email. The user has to click on it to validate his/her registration.
Expand Down

0 comments on commit 7e040ee

Please sign in to comment.