Access control

Access to the case notes can be configured through access control. More information about access control can be found here.

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

Permission to view all notes

{
    "resourceType": "com.ritense.note.domain.Note",
    "action": "view_list",
    "conditions": []
}

Permission to delete notes created by the logged-in user

{
   "resourceType":"com.ritense.note.domain.Note",
   "action":"delete",
   "conditions":[
      {
         "type":"field",
         "field":"createdByUserId",
         "operator":"==",
         "value":"${currentUserIdentifier}"
      }
   ]
}

Last updated

Was this helpful?