Skip to content

Commit 13d7e9d

Browse files
committed
fix: broken links
1 parent 89d985e commit 13d7e9d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

auth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Notice the `TOKEN_SECRET_KEY` variable in your `.env` file ? This is the key tha
2323

2424
Admins are a built-in entity that are **the only ones with access to the admin panel** (located at http://localhost:1111 by default). The admins are usually the people who manage the application on a day-to-day basis. Only admins can see and manage other admins.
2525

26-
Even though they are the most powerful users of your application, you can still create some [policies](./auth.md#access-types) that will restrict the access even for them.
26+
Even though they are the most powerful users of your application, you can still create some [policies](./access-policies.md) that will restrict the access even for them.
2727

2828
The [seed command](./entities.md#collections) will create an admin with the email `admin@manifest.build` and the password `admin`. You can create more admins from the admin panel.
2929

endpoints.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Each endpoint can be defined in the YAML file with the following values:
5454
| **path\*** | - | string | The path of your endpoint. Use the `:var` syntax for route params. Ex: `users/:id/upvote` |
5555
| **method\*** | - | _HttpMethod_ | The HTTP request method: "GET", "POST", "PATCH", "PUT" or "DELETE" |
5656
| **handler\*** | - | string | The name of the handler function triggered |
57-
| **policies\*** | `[]` | _Policy[]_ | The [access policies](./auth.md#access-policies) that restrict the access of the endpoint |
57+
| **policies\*** | `[]` | _Policy[]_ | The [access policies](./access-policies.md) that restrict the access of the endpoint |
5858
| **description** | - | string | Optional description for your endpoint |
5959

6060
## Manipulate data with the backend SDK

entities.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ entities:
6969
| **mainProp** | _first string field_ | string | Identifier prop. Used widely on the admin panel |
7070
| **nameSingular** | _singular lower case name_ | string | The singular lowercase name of your entity. Used widely on the admin panel. |
7171
| **namePlural** | _plural lower case name_ | string | The plural lowercase name of your entity. Used widely on the admin panel Default: plural lowercase name. |
72-
| **policies** | - | Policies | The [access control policies](./auth.md#access-policies) of your entity |
72+
| **policies** | - | Policies | The [access control policies](./access-policies.md) of your entity |
7373
| **properties** | `[]` | Array | The [properties](./entities.md#properties) of your entity |
7474
| **seedCount** | `50` | number | the number of entities to seed when running the seed command. |
7575
| **slug** | _plural dasherized name_ | string | The kebab-case slug of the entity that will define API endpoints. |

0 commit comments

Comments
 (0)