Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Split Security into Authentication & Authorization #5367

Merged
merged 2 commits into from
Jul 7, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions cookbook/map.rst.inc
Original file line number Diff line number Diff line change
Expand Up @@ -143,27 +143,30 @@
* :doc:`/cookbook/routing/redirect_trailing_slash`
* :doc:`/cookbook/routing/extra_information`

* :doc:`/cookbook/security/index`
* :doc:`Authentication </cookbook/security/index>`
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about: Security Authentication

and below Security Authorization

so that when people search for "security", then find these

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Per our conversation on IRC:

Security Authentication (Identifying/Logging in the User)

Security Authorization (Denying Access)


* :doc:`/cookbook/security/form_login_setup`
* :doc:`/cookbook/security/entity_provider`
* :doc:`/cookbook/security/remember_me`
* :doc:`/cookbook/security/impersonating_user`
* :doc:`/cookbook/security/voters`
* :doc:`/cookbook/security/voters_data_permission`
* :doc:`/cookbook/security/acl`
* :doc:`/cookbook/security/acl_advanced`
* :doc:`/cookbook/security/force_https`
* :doc:`/cookbook/security/form_login`
* :doc:`/cookbook/security/securing_services`
* :doc:`/cookbook/security/custom_provider`
* :doc:`/cookbook/security/custom_authentication_provider`
* :doc:`/cookbook/security/pre_authenticated`
* :doc:`/cookbook/security/target_path`
* :doc:`/cookbook/security/csrf_in_login_form`
* :doc:`/cookbook/security/access_control`
* :doc:`/cookbook/security/multiple_user_providers`

* :doc:`Authorization </cookbook/security/index>`

* :doc:`/cookbook/security/voters`
* :doc:`/cookbook/security/voters_data_permission`
* :doc:`/cookbook/security/acl`
* :doc:`/cookbook/security/acl_advanced`
* :doc:`/cookbook/security/force_https`
* :doc:`/cookbook/security/securing_services`
* :doc:`/cookbook/security/access_control`

* **Serializer**

* :doc:`/cookbook/serializer`
Expand Down
25 changes: 18 additions & 7 deletions cookbook/security/index.rst
Original file line number Diff line number Diff line change
@@ -1,24 +1,35 @@
Security
========

Authentication
--------------

.. toctree::
:maxdepth: 2

form_login_setup
entity_provider
remember_me
impersonating_user
voters
voters_data_permission
acl
acl_advanced
force_https
form_login
securing_services
custom_provider
custom_authentication_provider
pre_authenticated
target_path
csrf_in_login_form
access_control
multiple_user_providers

Authorization
-------------

.. toctree::
:maxdepth: 2

voters
voters_data_permission
acl
acl_advanced
force_https
securing_services
access_control