Add min/max to the function allow list (#1187)

This commit is contained in:
jbirddog 2024-03-11 10:18:37 -04:00 committed by GitHub
parent 60775fd8ad
commit 9c6c99db8e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -317,6 +317,8 @@ class CustomBpmnScriptEngine(PythonScriptEngine): # type: ignore
"time": time,
"timedelta": timedelta,
"uuid": uuid,
"min": min,
"max": max,
**JinjaHelpers.get_helper_mapping(),
}