Merge pull request #4396 from wimglenn/docs_bugfix

fix a b0rked code example in the permissions section of api guide
This commit is contained in:
José Padilla 2016-08-12 21:22:35 -04:00 committed by GitHub
commit b508bc8da6

View File

@ -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.response import Response
@api_view('GET')
@api_view(['GET'])
@permission_classes((IsAuthenticated, ))
def example_view(request, format=None):
content = {