You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, there is a problem with the BoolOperand.__new__ method. The returned operand would not properly work in such a case:
Make a custom policy condition checking method, i.e. check_something.
Use it in a form: check_something:{parent}.attribute_one.attribute_two inside a statement's condition and it works.
Use it again in a condition_expression in a form not check_something:{parent}.attribute_one.attribute_two and it will silently fail, because characters like { and } are not recognized properly.
Hello, there is a problem with the
BoolOperand.__new__
method. The returned operand would not properly work in such a case:check_something
.check_something:{parent}.attribute_one.attribute_two
inside a statement'scondition
and it works.condition_expression
in a formnot check_something:{parent}.attribute_one.attribute_two
and it will silently fail, because characters like{
and}
are not recognized properly.drf-access-policy/rest_access_policy/parsing.py
Line 69 in 68c4c2b
It should rather be:
The text was updated successfully, but these errors were encountered: