Merge pull request #5976 from victormpa/fix_filter_docs

Added import statement on filtering docs
This commit is contained in:
Xavier Ordoquy 2018-05-07 05:40:59 +00:00 committed by GitHub
commit 4340ff42de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -187,6 +187,8 @@ When in use, the browsable API will include a `SearchFilter` control:
The `SearchFilter` class will only be applied if the view has a `search_fields` attribute set. The `search_fields` attribute should be a list of names of text type fields on the model, such as `CharField` or `TextField`.
from rest_framework import filters
class UserListView(generics.ListAPIView):
queryset = User.objects.all()
serializer_class = UserSerializer