feat: Change vscode settings, add test data

This commit is contained in:
2025-04-26 17:40:37 +02:00
parent 8216473853
commit aaea7d3b28
3 changed files with 78 additions and 2 deletions

2
.vscode/launch.json vendored
View File

@@ -16,7 +16,7 @@
"outputCapture": "std",
"cwd": "${workspaceFolder}/legalconsenthub",
"type": "node-terminal",
"command": "npm run dev"
"command": "pnpm run dev"
}
],
"compounds": [

View File

@@ -1,3 +1,4 @@
{
"java.compile.nullAnalysis.mode": "automatic"
"java.compile.nullAnalysis.mode": "automatic",
"java.configuration.updateBuildConfiguration": "disabled"
}

75
testdata.json Normal file
View File

@@ -0,0 +1,75 @@
{
"isTemplate": true,
"name": "",
"createdBy": "Denis",
"lastModifiedBy": "Denis",
"formElements": [
{
"options": [
{
"value": "false",
"label": "Zustimmen (schwerwiegend)",
"processingPurpose": "BUSINESS_PROCESS",
"employeeDataCategory": "SENSITIVE"
}
],
"type": "SWITCH"
},
{
"options": [
{
"value": "false",
"label": "Zustimmen (keine Auswirkungen)",
"processingPurpose": "NONE",
"employeeDataCategory": "NONE"
}
],
"type": "SWITCH"
},
{
"options": [
{
"value": "false",
"label": "Zustimmen (Mittel)",
"processingPurpose": "DATA_ANALYSIS",
"employeeDataCategory": "REVIEW_REQUIRED"
}
],
"type": "CHECKBOX"
},
{
"options": [
{
"value": "false",
"label": "Zustimmen",
"processingPurpose": "BUSINESS_PROCESS",
"employeeDataCategory": "SENSITIVE"
},
{
"value": "false",
"label": "Ablehnen",
"processingPurpose": "DATA_ANALYSIS",
"employeeDataCategory": "REVIEW_REQUIRED"
}
],
"type": "SELECT"
},
{
"options": [
{
"value": "false",
"label": "Zustimmen",
"processingPurpose": "BUSINESS_PROCESS",
"employeeDataCategory": "SENSITIVE"
},
{
"value": "false",
"label": "Ablehnen",
"processingPurpose": "DATA_ANALYSIS",
"employeeDataCategory": "REVIEW_REQUIRED"
}
],
"type": "RADIOBUTTON"
}
]
}