8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-16 15:46:58 +00:00

Fix accessing view queryset property in api/permissions.py

Django would raise a RuntimeError indicating not to evaluate the .queryset attribute directly
This commit is contained in:
Jean-Romain Garnier 2021-01-05 21:09:45 +01:00 committed by Gabriel Detraz
parent 9669ab6851
commit c3a7e05496

View file

@ -241,7 +241,7 @@ class AutodetectACLPermission(permissions.BasePermission):
# Bypass permission verifications if it is a functional view
# (permissions are handled by ACL)
if not getattr(view, "queryset", getattr(view, "get_queryset", None)):
if not hasattr(view, "queryset") and not hasattr(view, "get_queryset"):
return True
if not request.user or not request.user.is_authenticated: