Skip to content

Commit ce0dc17

Browse files
committed
minor #5367 Split Security into Authentication & Authorization (iltar)
This PR was merged into the 2.3 branch. Discussion ---------- Split Security into Authentication & Authorization | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | all | Fixed tickets | ~ I have divided the security part into Authentication and Authorization. This is done visually only, structure wise they are still together. There's still an issue regarding the sorting, it will be a lot clearer if the lists are re-sorted but I will do this in another PR once this is done. I think I've update all the index pages that mention this, but if I missed something, I can add that. Commits ------- 825f447 Changed Authorization and Authentication to use subsections 2e2068a Split Security into Authentication & Authorization
2 parents 5624ed7 + 825f447 commit ce0dc17

File tree

2 files changed

+29
-15
lines changed

2 files changed

+29
-15
lines changed

cookbook/map.rst.inc

+11-8
Original file line numberDiff line numberDiff line change
@@ -149,27 +149,30 @@
149149
* :doc:`/cookbook/routing/redirect_trailing_slash`
150150
* :doc:`/cookbook/routing/extra_information`
151151

152-
* :doc:`/cookbook/security/index`
152+
* :doc:`Authentication </cookbook/security/index>`
153153

154154
* :doc:`/cookbook/security/form_login_setup`
155155
* :doc:`/cookbook/security/entity_provider`
156156
* :doc:`/cookbook/security/remember_me`
157157
* :doc:`/cookbook/security/impersonating_user`
158-
* :doc:`/cookbook/security/voters`
159-
* :doc:`/cookbook/security/voters_data_permission`
160-
* :doc:`/cookbook/security/acl`
161-
* :doc:`/cookbook/security/acl_advanced`
162-
* :doc:`/cookbook/security/force_https`
163158
* :doc:`/cookbook/security/form_login`
164-
* :doc:`/cookbook/security/securing_services`
165159
* :doc:`/cookbook/security/custom_provider`
166160
* :doc:`/cookbook/security/custom_authentication_provider`
167161
* :doc:`/cookbook/security/pre_authenticated`
168162
* :doc:`/cookbook/security/target_path`
169163
* :doc:`/cookbook/security/csrf_in_login_form`
170-
* :doc:`/cookbook/security/access_control`
171164
* :doc:`/cookbook/security/multiple_user_providers`
172165

166+
* :doc:`Authorization </cookbook/security/index>`
167+
168+
* :doc:`/cookbook/security/voters`
169+
* :doc:`/cookbook/security/voters_data_permission`
170+
* :doc:`/cookbook/security/acl`
171+
* :doc:`/cookbook/security/acl_advanced`
172+
* :doc:`/cookbook/security/force_https`
173+
* :doc:`/cookbook/security/securing_services`
174+
* :doc:`/cookbook/security/access_control`
175+
173176
* **Serializer**
174177

175178
* :doc:`/cookbook/serializer`

cookbook/security/index.rst

+18-7
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,35 @@
11
Security
22
========
33

4+
Authentication
5+
--------------
6+
47
.. toctree::
58
:maxdepth: 2
69

710
form_login_setup
811
entity_provider
912
remember_me
1013
impersonating_user
11-
voters
12-
voters_data_permission
13-
acl
14-
acl_advanced
15-
force_https
1614
form_login
17-
securing_services
1815
custom_provider
1916
custom_authentication_provider
2017
pre_authenticated
2118
target_path
2219
csrf_in_login_form
23-
access_control
2420
multiple_user_providers
21+
22+
Authorization
23+
-------------
24+
25+
.. toctree::
26+
:maxdepth: 2
27+
28+
voters
29+
voters_data_permission
30+
acl
31+
acl_advanced
32+
force_https
33+
securing_services
34+
access_control
35+

0 commit comments

Comments
 (0)