fulcrumapp / fulcrum-expressions

Fulcrum expressions engine
http://developer.fulcrumapp.com/expressions/intro/
5 stars 0 forks source link

Story/FLCRM-8438 SETVALUE should support dynamic fields #48

Closed toddrun closed 2 years ago

toddrun commented 2 years ago

Allows the SETVALUE function to accept DynamicField elements

Validation ensure the value passed is an array of dynamic objects similar to the following:

[
    {id: 'str1', elements: [], values: {}},
    {id: 'str2', elements: [], values: {}}
]

Non-conforming objects are removed and ignored.

toddrun commented 2 years ago

Switched this back to a draft while validation work is done