Adding a more explicit error message when a view does have a get_queryset method but it returned nothing

This commit is contained in:
Felipe Bidu 2017-08-22 11:00:19 -03:00
parent fed85bc29d
commit 5fd01d06ab

View File

@ -122,6 +122,9 @@ class DjangoModelPermissions(BasePermission):
if hasattr(view, 'get_queryset'):
queryset = view.get_queryset()
assert queryset is not None, (
'The `.get_queryset()` method from the view did not return anything.'
)
else:
queryset = getattr(view, 'queryset', None)