diff --git a/src/main/java/edu/stanford/protege/webprotege/hierarchy/MoveHierarchyNodeIcdAction.java b/src/main/java/edu/stanford/protege/webprotege/hierarchy/MoveHierarchyNodeIcdAction.java index 7ba45da..22755d3 100644 --- a/src/main/java/edu/stanford/protege/webprotege/hierarchy/MoveHierarchyNodeIcdAction.java +++ b/src/main/java/edu/stanford/protege/webprotege/hierarchy/MoveHierarchyNodeIcdAction.java @@ -17,7 +17,8 @@ public record MoveHierarchyNodeIcdAction(@JsonProperty("changeRequestId") Change @JsonProperty("hierarchyDescriptor") @Nonnull HierarchyDescriptor hierarchyDescriptor, @JsonProperty("fromNodePath") @Nonnull Path fromNodePath, @JsonProperty("toNodeParentPath") @Nonnull Path toNodeParentPath, - @JsonProperty("dropType") @Nonnull DropType dropType) implements ProjectAction, ContentChangeRequest { + @JsonProperty("dropType") @Nonnull DropType dropType, + @JsonProperty("commitMessage") String commitMessage) implements ProjectAction, ContentChangeRequest { public static final String CHANNEL = "webprotege.hierarchies.MoveHierarchyNodeIcd";