mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2026-03-13 07:49:55 +08:00
Fix broken links in documentation
This commit is contained in:
@@ -41,7 +41,7 @@ database configuration and the users logic. It should be generated by a FastAPI
|
||||
{!./src/db_ormar.py!}
|
||||
```
|
||||
|
||||
Notice that we pass a reference to your [`UserDB` model](../model.md).
|
||||
Notice that we pass a reference to your [`UserDB` model](../models.md).
|
||||
|
||||
!!! warning
|
||||
In production, it's strongly recommended to setup a migration system to
|
||||
|
||||
@@ -85,7 +85,7 @@ Register a new user. Will call the `on_after_register` [handler](../configuratio
|
||||
```
|
||||
|
||||
!!! fail "`400 Bad Request`"
|
||||
[Password validation](../configuration/password-validation.md) failed.
|
||||
[Password validation](../configuration/user-manager.md#validate_password) failed.
|
||||
|
||||
```json
|
||||
{
|
||||
@@ -139,7 +139,7 @@ Reset a password. Requires the token generated by the `/forgot-password` route.
|
||||
```
|
||||
|
||||
!!! fail "`400 Bad Request`"
|
||||
[Password validation](../configuration/password-validation.md) failed.
|
||||
[Password validation](../configuration/user-manager.md#validate_password) failed.
|
||||
|
||||
```json
|
||||
{
|
||||
@@ -300,7 +300,7 @@ Update the current authenticated active user.
|
||||
|
||||
|
||||
!!! fail "`400 Bad Request`"
|
||||
[Password validation](../configuration/password-validation.md) failed.
|
||||
[Password validation](../configuration/user-manager.md#validate_password) failed.
|
||||
|
||||
```json
|
||||
{
|
||||
@@ -368,7 +368,7 @@ Update the user with id `user_id`.
|
||||
The user does not exist.
|
||||
|
||||
!!! fail "`400 Bad Request`"
|
||||
[Password validation](../configuration/password-validation.md) failed.
|
||||
[Password validation](../configuration/user-manager.md#validate_password) failed.
|
||||
|
||||
```json
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user