Notes

Access control

Access to the case notes can be configured through access control. More information about access control can be found herearrow-up-right.

Resources and actions

Resource type
Action
Effect

com.ritense.note.domain.Note

view_list

Allows viewing notes.

create

Allows creating a note

modify

Allows modifying a note

delete

Allows deleting a note

Examples

chevron-rightPermission to view all noteshashtag
{
    "resourceType": "com.ritense.note.domain.Note",
    "action": "view_list",
    "conditions": []
}
chevron-rightPermission to delete notes created by the logged-in userhashtag
{
   "resourceType": "com.ritense.note.domain.Note",
   "action": "delete",
   "conditions": [
      {
         "type": "field",
         "field": "createdByUserId",
         "operator": "==",
         "value": "${currentUserIdentifier}"
      }
   ]
}

Last updated