Skip to content

Commit 7898df7

Browse files
committed
feature #6465 Added ldap to the list of user providers (AAstakhov)
This PR was merged into the 2.8 branch. Discussion ---------- Added ldap to the list of user providers | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | 2.8+ | Fixed tickets | n/a Ldap is the new user provider in Symfony 2.8, so it would be good to mention it in the list of all user providers. Commits ------- f723ea5 Added ldap to the list of user providers
2 parents 1c3a7bd + f723ea5 commit 7898df7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cookbook/security/custom_provider.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ When a user submits a username and password, the authentication layer asks
99
the configured user provider to return a user object for a given username.
1010
Symfony then checks whether the password of this user is correct and generates
1111
a security token so the user stays authenticated during the current session.
12-
Out of the box, Symfony has an "in_memory" and an "entity" user provider.
12+
Out of the box, Symfony has four user providers: ``in_memory``, ``entity``,
13+
``ldap`` and ``chain``.
1314
In this entry you'll see how you can create your own user provider, which
1415
could be useful if your users are accessed via a custom database, a file,
1516
or - as shown in this example - a web service.

0 commit comments

Comments
 (0)