Skip to content

Commit c8d5bf0

Browse files
authored
Fix serializing DeleteSegmentDataUpdateAction (#8362)
1 parent a46d76b commit c8d5bf0

File tree

1 file changed

+2
-0
lines changed
  • webknossos-tracingstore/app/com/scalableminds/webknossos/tracingstore/annotation

1 file changed

+2
-0
lines changed

webknossos-tracingstore/app/com/scalableminds/webknossos/tracingstore/annotation/UpdateActions.scala

+2
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,8 @@ object UpdateAction {
165165
Json.obj("name" -> "updateSegment", "value" -> Json.toJson(s)(UpdateSegmentVolumeAction.jsonFormat))
166166
case s: DeleteSegmentVolumeAction =>
167167
Json.obj("name" -> "deleteSegment", "value" -> Json.toJson(s)(DeleteSegmentVolumeAction.jsonFormat))
168+
case s: DeleteSegmentDataVolumeAction =>
169+
Json.obj("name" -> "deleteSegmentData", "value" -> Json.toJson(s)(DeleteSegmentDataVolumeAction.jsonFormat))
168170
case s: UpdateSegmentGroupsVolumeAction =>
169171
Json.obj("name" -> "updateSegmentGroups", "value" -> Json.toJson(s)(UpdateSegmentGroupsVolumeAction.jsonFormat))
170172
case s: UpdateMappingNameVolumeAction =>

0 commit comments

Comments
 (0)