Changes between Version 2 and Version 3 of Modules/AuthModule/WishList


Ignore:
Timestamp:
2012-01-04T16:19:43+01:00 (13 years ago)
Author:
Morris Swertz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Modules/AuthModule/WishList

    v2 v3  
    1717
    1818
    19 == Record permission roles ==
     19== Entity permissions ==
     20
     21All 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.
     22On 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
     29These permissions can be restricted or loosened at record level using the permissions described below.
     30
     31== Record permissions ==
    2032
    2133A record is an instance of an entity. Record permissions define what actions a role can perform on a record.
    2234We distinguish the following types of permissions per record:
    2335
    24 || action || view || edit || own ||
     36|| action || read || write || own ||
    2537|| view record || X || X || X ||
    2638|| edit record || - || X || X ||
    2739|| give other roles view or edit permissions || - || - || X ||
    2840|| delete record || - || - || X ||
    29 || transfer ownership to other user || - || - || X ||
     41|| transfer ownership to other role || - || - || X ||
    3042
    3143Only when having table level write permission you can create new records.