mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-07-08 22:33:18 +03:00
fix a b0rked code example in the permissions section of api guide
This commit is contained in:
parent
964f82528c
commit
0a48d21e09
|
@ -92,7 +92,7 @@ Or, if you're using the `@api_view` decorator with function based views.
|
||||||
from rest_framework.permissions import IsAuthenticated
|
from rest_framework.permissions import IsAuthenticated
|
||||||
from rest_framework.response import Response
|
from rest_framework.response import Response
|
||||||
|
|
||||||
@api_view('GET')
|
@api_view(['GET'])
|
||||||
@permission_classes((IsAuthenticated, ))
|
@permission_classes((IsAuthenticated, ))
|
||||||
def example_view(request, format=None):
|
def example_view(request, format=None):
|
||||||
content = {
|
content = {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user