Skip to content

Make transferFlags a multivariate function

David Schäfer requested to merge multi-transfer into develop

It is not uncommon to transfer the flags from multiple fields to one target, e.g tansferFlags(field=["a", "b", "c"], target="x"). Currently we only support this by calling transferFlagsmultiple times, which might trash up the history with empty columns. This MR makestransferFlags` a function supporting the projection of flags from many to one.

Merge request reports