mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-10-31 23:22:49 +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:
parent
9669ab6851
commit
c3a7e05496
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue