Action Security
Each page can have security property (python dictionary).
example security:
{'view':0,
'attachment_get':1,
'edit':2,
'create':2,
'delete':4,
'rename':3,}
This specifies the least clearance levels required to execute actions. User can execute the action only if
user's clearance level >= action's security level
Security property is inherited and overrided from ancestor pages. So you only need to specify the security of actions you want to override.
For macros there is no security settings (due to caching mechanism), so the authors of macros have to be carefull not to expose protected pages.
Sandbox
- You can checkout admin action in
SandBox when you are logged in.
See also