Skip to content

Commit 393c09f

Browse files
committed
docs(entity): move from core to symfony
1 parent 202036a commit 393c09f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

core/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Here is the fully featured REST API you'll get in minutes:
3434
- Advanced [serialization](serialization.md) thanks to the Symfony Serializer Component (groups support, relation embedding, max depth...)
3535
- Automatic route registration
3636
- Automatic entry point generation giving access to all resources
37-
- [User](user.md) support
37+
- [User Management using Symfony](../symfony/user.md)
3838
- [JWT](jwt.md) and [OAuth](https://oauth.net/) support
3939
- Files and `\DateTime` and serialization and deserialization
4040

outline.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ chapters:
1212
- migrate-from-fosrestbundle
1313
- fosuser-bundle
1414
- nelmio-api-doc
15+
- user
1516
- title: "API Platform for Laravel"
1617
path: laravel
1718
items:
@@ -64,7 +65,6 @@ chapters:
6465
- events
6566
- file-upload
6667
- jwt
67-
- user
6868
- form-data
6969
- bootstrap
7070
- configuration

core/user.md renamed to symfony/user.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# User Entity
1+
# User Entity with Symfony
22

33
This documentation is based on the [official Symfony Documentation](https://symfony.com/doc/current/security/user_providers.html) with some API Platform integrations.
44

@@ -219,7 +219,7 @@ class UserRepository extends ServiceEntityRepository implements PasswordUpgrader
219219
## Creating and Updating User Password
220220

221221
There's no built-in way for hashing the plain password on `POST`, `PUT` or `PATCH`.
222-
Happily you can use the API Platform [state processors](state-processors.md) for auto-hashing plain passwords.
222+
Happily you can use the API Platform [state processors](../core/state-processors.md) for auto-hashing plain passwords.
223223

224224
First create a new state processor:
225225

0 commit comments

Comments
 (0)