Skip to content

Commit 334bd02

Browse files
committed
chore: fix docs rollout
1 parent d3cb36a commit 334bd02

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

adminforth/documentation/docs/tutorial/03-Customization/04-hooks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ When user opens edit page, AdminForth makes a request to the backend to get the
4444

4545
Practically you can use `show.afterDatasourceResponse` to modify or add some data before it is displayed on the edit page.
4646

47-
For example [upload plugin](/docs/tutorial/Plugins/upload/) uses this hook to generate signed preview URL so user can see existing uploaded file preview in form, and at the same time database stores only original file path which might be not accessible without presigned URL.
47+
For example [upload plugin](/docs/tutorial/Plugins/05-0-upload/) uses this hook to generate signed preview URL so user can see existing uploaded file preview in form, and at the same time database stores only original file path which might be not accessible without presigned URL.
4848

4949
## Saving data on edit page
5050

adminforth/documentation/docs/tutorial/03-Customization/12-security.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Also you can add custom rules. For example to prevent popular words:
6666
],
6767
```
6868
69-
All rules defined in password column will be also delivered to [password reset plugin](../07-Plugins/07-email-password-reset.md) if you are using it to ensure that password reset will also respect same rules.
69+
All rules defined in password column will be also delivered to [password reset plugin](../08-Plugins/07-email-password-reset.md) if you are using it to ensure that password reset will also respect same rules.
7070
7171
7272
## Trusting client IP addresses

adminforth/documentation/docs/tutorial/08-Plugins/05-1-upload-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Upload API
1+
# Upload API
22

33
The Upload plugin exposes an API for both backend-only uploads and direct browser uploads using presigned URLs. You can:
44

adminforth/documentation/docs/tutorial/08-Plugins/17-bulk-ai-flow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Migrate prisma schema:
5252
npm run makemigration -- --name add-apartment-image-url ; npm run migrate:local
5353
```
5454
55-
We will also attach [upload plugin](/docs/tutorial/Plugins/upload/) to this field.
55+
We will also attach [upload plugin](/docs/tutorial/Plugins/05-0-upload/) to this field.
5656
5757
5858
Add credentials in your `.env` file:

adminforth/types/Back.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ export interface IAdminForth {
431431
*
432432
* Example:
433433
* ```ts
434-
* const auditLog = adminforth.getPluginById<AuditLogPlugin>('AuditLogPlugin');
434+
* const auditLog = adminforth.getPluginById&lt;AuditLogPlugin&gt;('AuditLogPlugin');
435435
* ```
436436
*/
437437
getPluginById<T>(id: string): T;

0 commit comments

Comments
 (0)