I am creating a set of utility functions to retrieve and update Resilient select field values.
I would like these to be all under the same function path in resilient_actions, to avoid having to maintain the same helper code in multiple place.
Every function I create in Resilient though, (get_field_values, update_field_value), a separate directory is created under resilient_actions on the file system.
i.e.
resilient_actions/get_field_values/get_field_values/
resilient_actions/update_field_value/update_field_value/
I would like it to be more like this, and I've seen it done with the xforce app fn_datatable_utils.
resilient_actions/selectfield_utils/selectfield_utils/components/
funct_get_field_values.py (both of these functions utilize methods in the utils/select_field_helper.py)
funct_update_field_value.py
resilient_actions/selectfield_utils/selectfield_utils/utils/
select_field_helper.py
Any advice how to do this myself?
------------------------------
Tim Gray
------------------------------