Adding imports to docs

This commit is contained in:
Tom Christie 2015-08-06 09:56:09 +01:00
parent bbe5044c04
commit 9a778793f8

View File

@ -88,7 +88,9 @@ using the `APIView` class based views.
Or, if you're using the `@api_view` decorator with function based views. Or, if you're using the `@api_view` decorator with function based views.
from rest_framework.decorators import permission_classes from rest_framework.decorators import api_view, permission_classes
from rest_framework.permissions import IsAuthenticated
from rest_framework.response import Response
@api_view('GET') @api_view('GET')
@permission_classes((IsAuthenticated, )) @permission_classes((IsAuthenticated, ))