mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-22 17:47:04 +03:00
Merge pull request #6386 from philratcliffe/fix_missing_import_in_example_code
Fix missing import in example code
This commit is contained in:
commit
030119c117
|
@ -104,7 +104,7 @@ __Note:__ when you set new permission classes through class attribute or decorat
|
|||
|
||||
Provided they inherit from `rest_framework.permissions.BasePermission`, permissions can be composed using standard Python bitwise operators. For example, `IsAuthenticatedOrReadOnly` could be written:
|
||||
|
||||
from rest_framework.permissions import BasePermission, IsAuthenticated
|
||||
from rest_framework.permissions import BasePermission, IsAuthenticated, SAFE_METHODS
|
||||
from rest_framework.response import Response
|
||||
from rest_framework.views import APIView
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user