Only the first-named requirement gets executed when I use "or" in a
decorator.
What is correct "or" syntax?
In below example, the first item works and the second is ignored.
@auth.requires_membership(request.get_vars.specificObjectID or
'Engagement_Squared_Super_Admin')
In second example below, the first item works and second is is ignored.
@auth.requires((auth.has_membership('Engagement_Squared_Super_Admin') or
(auth.has_membership(request.get_vars.specificObjectID))))
What is correct syntax for the "or" operator?
thanks,
Alex Glaros
Note: they correctly work independently when used as one-liners. E.g.,
@auth.requires_membership(request.get_vars.specificObjectID)
--
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
---
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.