Skip to content

Commit 59f127f

Browse files
committed
docs: update links
1 parent 35bb3d1 commit 59f127f

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

docs/concepts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on the standard Config class if nothing is found in the database.
2121
Shield has a model to handle user persistence. Shield calls this the "User Provider" class.
2222
A default model is provided for you by the `CodeIgniter\Shield\Models\UserModel` class.
2323

24-
You can use your own model to customize user attributes. See [Customizing Shield](./customization.md#custom-user-provider) for details.
24+
You can use your own model to customize user attributes. See [Customizing User Provider](./customization/user_provider.md) for details.
2525

2626
## User Identities
2727

docs/customization/login_identifier.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This only works with the Session authenticator.
2222
];
2323
```
2424
> **Warning**
25-
> It is very important for security that if you add a new column for identifier you must write a new **Validation Rules** and then set it using the [custom-validation-rules](https://github.com/codeigniter4/shield/blob/develop/docs/customization.md#custom-validation-rules) description.
25+
> It is very important for security that if you add a new column for identifier, you must write a new **Validation Rules** and then set it using the [Customizing Validation Rules](./validation_rules.md) description.
2626

2727
3. Edit the login form to change the name of the default `email` input to the new field name.
2828

docs/customization/user_provider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Customizing User Provider
22

33
If you want to customize user attributes, you need to create your own
4-
[User Provider](./concepts.md#user-providers) class.
4+
[User Provider](../concepts.md#user-providers) class.
55
The only requirement is that your new class MUST extend the provided `CodeIgniter\Shield\Models\UserModel`.
66

77
Shield has a CLI command to quickly create a custom `UserModel` class by running the following

docs/guides/strengthen_password.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ By default, Shield has the validation rules for maximum password length.
107107
- 72 bytes for PASSWORD_BCRYPT
108108
- 255 characters for others
109109

110-
You can customize the validation rule. See [Customizing Shield](../customization.md).
110+
You can customize the validation rule. See [Customizing Validation Rules](../customization/validation_rules.md).
111111

112112
## $supportOldDangerousPassword
113113

docs/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Require it with an explicit version constraint allowing its desired stability.
6363

6464
> **Note** If you want to customize table names, you must change the table names
6565
> before running database migrations.
66-
> See [Customizing Shield](./customization.md#custom-table-names).
66+
> See [Customizing Table Names](./customization/table_names.md).
6767

6868
2. Configure **app/Config/Email.php** to allow Shield to send emails with the [Email Class](https://codeigniter.com/user_guide/libraries/email.html).
6969

@@ -140,7 +140,7 @@ your project.
140140

141141
> **Note** If you want to customize table names, you must change the table names
142142
> before running database migrations.
143-
> See [Customizing Shield](./customization.md#custom-table-names).
143+
> See [Customizing Table Names](./customization/table_names.md).
144144

145145
```console
146146
php spark migrate --all

0 commit comments

Comments
 (0)