Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="https://www.omg.org/spec/DMN/20191111/MODEL/" xmlns:dmndi="https://www.omg.org/spec/DMN/20191111/DMNDI/" xmlns:dc="http://www.omg.org/spec/DMN/20180521/DC/" xmlns:biodi="http://bpmn.io/schema/dmn/biodi/2.0" xmlns:camunda="http://camunda.org/schema/1.0/dmn" id="wa-permissions-definition" name="DRD" namespace="http://camunda.org/schema/1.0/dmn" exporter="Camunda Modeler" exporterVersion="5.25.0">
<definitions xmlns="https://www.omg.org/spec/DMN/20191111/MODEL/" xmlns:dmndi="https://www.omg.org/spec/DMN/20191111/DMNDI/" xmlns:dc="http://www.omg.org/spec/DMN/20180521/DC/" xmlns:biodi="http://bpmn.io/schema/dmn/biodi/2.0" xmlns:camunda="http://camunda.org/schema/1.0/dmn" id="wa-permissions-definition" name="DRD" namespace="http://camunda.org/schema/1.0/dmn" exporter="Camunda Modeler" exporterVersion="5.43.1">
<decision id="wa-task-permissions-st_cic-criminalinjuriescompensation" name="Task Permissions DMN" camunda:historyTimeToLive="P90D">
<decisionTable id="DecisionTable_1pr5oic" hitPolicy="RULE ORDER">
<input id="InputClause_12crj6e" label="Task Type" biodi:width="299" camunda:inputVariable="taskType">
Expand Down Expand Up @@ -318,7 +318,7 @@
<rule id="DecisionRule_1x6fvmc">
<description>"Access Request for Hearing Centre Team Leader"</description>
<inputEntry id="UnaryTests_1q0ms1x">
<text>"reviewSpecificAccessRequestAdmin"</text>
<text>"reviewSpecificAccessRequestAdmin","reviewSpecificAccessRequestCTSC"</text>
</inputEntry>
<inputEntry id="UnaryTests_0vrobht">
<text></text>
Expand Down Expand Up @@ -348,7 +348,7 @@
<rule id="DecisionRule_18sw2h1">
<description>"Access Request for Regional Hearing Centre Team Leader"</description>
<inputEntry id="UnaryTests_0ltxmzm">
<text>"reviewSpecificAccessRequestAdmin"</text>
<text>"reviewSpecificAccessRequestAdmin","reviewSpecificAccessRequestCTSC"</text>
</inputEntry>
<inputEntry id="UnaryTests_0xodl7j">
<text></text>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -552,6 +552,8 @@ private static List<Map<String, Object>> defaultSpecificAccessRequestAdminPermis
private static List<Map<String, Object>> defaultSpecificAccessRequestCtscPermissions() {
return List.of(
taskSupervisorPermissions(),
hearingCentreTeamLeaderSpecificAccessPermissions(),
regionalHearingCentreTeamLeaderSpecificAccessPermissions(),
ctscTeamLeaderSpecificAccessPermissions()
);
}
Expand Down
Loading