Changes between Version 2 and Version 3 of Modules/AuthModule/WishList
- Timestamp:
- 2012-01-04T16:19:43+01:00 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Modules/AuthModule/WishList
v2 v3 17 17 18 18 19 == Record permission roles == 19 == Entity permissions == 20 21 All MOLGENIS static components are 'entities', including data entity and user interface form, menu, plugin. Each entity is identified by its unique class name (matching the name in the code). For example org.molgenis.organization.Investigation refers to the entity named Investigation. 22 On each resource one can specify: 23 24 || action || read || execute || write || 25 || view elements of this resource (e.g. records) || X || X || X || 26 || execute elements of this resource (e.g. pipelines) || - || X || X || 27 || create, edit, or delete elements in this resource || - || - || X || 28 29 These permissions can be restricted or loosened at record level using the permissions described below. 30 31 == Record permissions == 20 32 21 33 A record is an instance of an entity. Record permissions define what actions a role can perform on a record. 22 34 We distinguish the following types of permissions per record: 23 35 24 || action || view || edit|| own ||36 || action || read || write || own || 25 37 || view record || X || X || X || 26 38 || edit record || - || X || X || 27 39 || give other roles view or edit permissions || - || - || X || 28 40 || delete record || - || - || X || 29 || transfer ownership to other user|| - || - || X ||41 || transfer ownership to other role || - || - || X || 30 42 31 43 Only when having table level write permission you can create new records.