-
Notifications
You must be signed in to change notification settings - Fork 223
Closed
Labels
Description
| Q | A |
|---|---|
| Bug report? | no |
| Feature request? | yes |
| BC Break report? | no |
| RFC? | no |
| Version/Branch | v0.12.5 |
When using the access property it's very easy to make mistakes. It wants to have a boolean value or expression language string. But when you forget to prefix your expression with @= the string value will result to true, granting access.
Two problems:
- It should use strict comparison
access === trueand notaccess == true. - It should only accept
true,false, or string starting with@=