Add multi-value support to custom properties
Description
None
is required by
Checklist
hideTestRail: Results
Activity
Show:

Owen Stephens May 11, 2022 at 10:40 AMEdited
Done
Details
Details
Components
Assignee

Reporter

Priority
Sprint
None
Development Team
Bienenvolk
TestRail: Cases
Open TestRail: Cases
TestRail: Runs
Open TestRail: Runs
Created May 3, 2022 at 9:35 AM
Updated June 29, 2022 at 9:11 AM
Resolved June 15, 2022 at 1:10 PM
TestRail: Cases
TestRail: Runs
Steve wrote in Slack:
We can prolly model it with a new base class. There would need to be changes to binders and the code that creates the definitions, but it should be fairly low impact.
@Entity class MultiValueCustomProperty<T> extends CustomProperty<T> { Set<T> value }
and then:
https://github.com/k-int/web-toolkit-ce/tree/feat/multi_value_cust_props Adds a Multi-Valued Integer type and also the beginnings of a test specification. @Ethan Freestone - Use the new type as a template and add the others and add tests for them and the original single values.