You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+25-1Lines changed: 25 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -396,4 +396,28 @@ You can display you file upload in a formio form by returning the base64 value i
396
396
397
397
Typical use case would be to upload the file as JSON/base64 as part of the form submission, and then handle transitive modifications of the file
398
398
into other storage formats, and drop the base64 value from the submission / replace with other values pointing to a long term
399
-
storage format (such as a blob/file storage container)
399
+
storage format (such as a blob/file storage container)
400
+
401
+
## Get-Form-Variables Command Security Plugin
402
+
403
+
The plugin `GetFormVariablesSecurityProcessEnginePlugin.class` provides variable security using Camunda Extension
404
+
Properties on a User Task.
405
+
406
+
Plugin full path: `com.github.stephenott.camunda.tasks.forms.command.GetFormVariablesSecurityProcessEnginePlugin`
407
+
408
+
The plugin provides two types of variable security:
409
+
410
+
1.`allowed-variables` : a comma separated list of variable names that can be accessed using the endpoint `GET /task/{id}/form-variables` or the java api (getFormVariables).
411
+
1.`restricted-variables` : a comma separated list of variable names that cannot be accessed using the endpoint `GET /task/{id}/form-variables` or the java api (getFormVariables).
412
+
413
+
`allowed-variables` is used to control the exact list of variables that can be accessed. Any variables that are not part of this list will be removed from the result. No error will be thrown.
414
+
415
+
`restricted-variables` is used to control which variables cannot be accessed. Any variables that are part of this will be removed from the result. No error will be thrown.
0 commit comments