Changes between Version 6 and Version 7 of UserGuidelines/Admin/Permissions/Rules
- Timestamp:
- 02/09/17 10:36:08 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UserGuidelines/Admin/Permissions/Rules
v6 v7 109 109 110 110 auth.s3_has_role(ANONYMOUS) is not a suitable means to differentiate between logged-in users and unauthenticated users (because it is always True). Instead, one should use one of the following alternatives: 111 - auth.s3_logged_in() (which performs an implicit HTTP Basic Authif necessary), or112 - auth.user!=None (if no implicit Authentication is desired), or111 - auth.s3_logged_in() (which performs an implicit HTTP Basic Authentication if necessary), or 112 - auth.user!=None (if no implicit Basic Authentication is desired), or 113 113 - auth.s3_has_role(AUTHENTICATED). 114 114