Skip to content

Commit 0fd88fb

Browse files
committed
feat: add SR
1 parent b3ecd08 commit 0fd88fb

4 files changed

Lines changed: 30 additions & 1 deletion

File tree

.vscode/launch.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@
99
"program": "${workspaceFolder}/workbench.js",
1010
"request": "launch",
1111
"type": "node"
12+
},
13+
{
14+
"name": "Workbench publish",
15+
"program": "${workspaceFolder}/workbench.js",
16+
"args": ["--publish"],
17+
"request": "launch",
18+
"type": "node"
1219
}
1320
]
1421
}

solution/modules/policy.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
}
1616
],
1717
"fePackages": [
18-
"PolicyModule", "ContributionModule"
18+
"PolicyModule", "ContributionModule"
1919
],
2020
"bePackages": [
2121
"policy", "contribution"

solution/solutions/SR.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"modules": {
3+
"grievance": "../modules/grievance.json",
4+
"opeserach": "../modules/opensearch-report.json",
5+
"individual":"../modules/individual.json",
6+
"api-import": "../modules/api-import.json",
7+
"deduplication": "../modules/deduplication.json"
8+
},
9+
"solutions": [
10+
"./social-protection-bundle.json",
11+
"./core-bundle.json"
12+
],
13+
"services":["db"],
14+
"moduleConfiguration": {
15+
"logo": "./sources/logo/coremis.png"
16+
},
17+
"initData":[
18+
"../fixtures/core/roles-coreMIS.json",
19+
"../fixtures/core/rights-case-worker-social-officer.json"
20+
]
21+
}

workbench.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,7 @@ async function main() {
240240
'SHI': './solution/solutions/HF.json',
241241
'claimai': './solution/solutions/HF.json',
242242
'full' : './solution/solutions/full.json',
243+
'SR': './solution/solutions/full.json'
243244
}
244245
const permission = fs.readFileSync('./solution/permissions_map.json', 'utf8');
245246
const permissionMap = JSON.parse(permission);

0 commit comments

Comments
 (0)