1
0
mirror of https://github.com/django/django.git synced 2025-10-30 00:56:09 +00:00

[2.2.x] Fixed #30161 -- Added how to decorate class-based views to view decorators docs.

Backport of 406de977ea from master.
This commit is contained in:
alexanderblnf
2019-03-11 11:17:50 +01:00
committed by Tim Graham
parent 282961f553
commit 14240e491e
2 changed files with 6 additions and 0 deletions

View File

@@ -307,6 +307,9 @@ decorator. In the example, ``never_cache()`` will process the request before
``login_required()``.
In this example, every instance of ``ProtectedView`` will have login protection.
These examples use ``login_required``, however, the same behavior can be
obtained more simply using
:class:`~django.contrib.auth.mixins.LoginRequiredMixin`.
.. note::