How to map Node properties on the fly to use with List component?
I'm trying to port custom component to OOTB List component in AEM 5.6.1. Custom component keeps its settings in the node properties which names are different from what com.day.cq.wcm.foundation.List is expecting.
For example: custom component has tag filter implemented and its values stored in the property named "featuredTags", OOTB List component is looking for the property named "tags" (JavaDoc).
Is there a way how to populate or map such properties on the fly without actually updating repository?