Access control

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

Resources and actions

Resource type
Action
Effect

com.ritense.case_.domain.tab.CaseWidgetTabWidget

view

Allows viewing a case widget

Examples

Permission to view all case widget

{
    "resourceType": "com.ritense.case_.domain.tab.CaseWidgetTabWidget",
    "action": "view",
    "conditions": []
}

Permission to view all case widgets of one specific case type

{
   "resourceType":"com.ritense.case_.domain.tab.CaseWidgetTabWidget",
   "action":"view",
   "conditions":[
      {
         "type":"field",
         "field":"id.caseWidgetTab.id.caseDefinitionName",
         "operator":"==",
         "value":"evenementenvergunning"
      }
   ]
}

Permission to view one specific case widget

{
   "resourceType":"com.ritense.case_.domain.tab.CaseWidgetTabWidget",
   "action":"view",
   "conditions":[
      {
         "type":"field",
         "field":"key",
         "operator":"==",
         "value":"personal-data"
      }
   ]
}

Last updated

Was this helpful?