Files
iD/modules/actions/move_member.js

6 lines
192 B
JavaScript

export function actionMoveMember(relationId, fromIndex, toIndex) {
return function(graph) {
return graph.replace(graph.entity(relationId).moveMember(fromIndex, toIndex));
};
}