Grammar and punctuation of routing.md

Signed-off-by: Bart Duisters <bartduisters@bartduisters.com>
This commit is contained in:
Bart Duisters 2020-02-08 16:44:04 +01:00
parent e303178150
commit f679e7d218

View File

@ -4,7 +4,7 @@
`./api/**/config/routes.json` files define all available endpoints for the clients.
By default Strapi generate endpoints for all your Content Type. More information in the [Content API](../content-api/api-endpoints.md) documentation.
By default Strapi generate endpoints for all your Content Types. More information in the [Content API](../content-api/api-endpoints.md) documentation.
## How to create a route?
@ -43,12 +43,12 @@ You have to edit the `routes.json` file in one of your APIs folders (`./api/**/c
}
```
- `method` (string): Method or array of methods to hit the route (ex: `GET`, `POST`, `PUT`, `HEAD`, `DELETE`, `PATCH`)
- `path` (string): URL starting with `/` (ex: `/restaurants`)
- `handler` (string): Action to executed when the route is hit following this syntax `<Controller>.<action>`
- `method` (string): Method or array of methods to hit the route (e.g. `GET`, `POST`, `PUT`, `HEAD`, `DELETE`, `PATCH`).
- `path` (string): URL starting with `/` (e.g. `/restaurants`).
- `handler` (string): Action to execute when the route is hit following this syntax `<Controller>.<action>`.
- `config`
- `policies` (array): Array of policies names or path ([see more](./policies.md))
- `prefix` (string): Set a prefix to this route. Also, it will be loaded into the main router (useful feature for plugin)
- `policies` (array): Array of policy names or path ([see more](./policies.md)).
- `prefix` (string): Set a prefix to this route. Also, it will be loaded into the main router (useful feature for a plugin).
## Dynamic parameters
@ -79,7 +79,7 @@ The router used by Strapi allows you to create dynamic routes where you can use
## Override default route
By default, the main route of the server `/` is pointed to the `/public/index.html` file. To override this behavior, you need to create a route with an empty path `/` in one of your API folder (`/api/**/config/routes.json`).
By default, the main route of the server `/` is pointed to the `/public/index.html` file. To override this behavior, you need to create a route with an empty path `/` in one of the `routes.json` files of your API folder (`/api/**/config/routes.json`).
```json
{