Skip to content

Commit

Permalink
Correct bulk_move openapi documentaiton
Browse files Browse the repository at this point in the history
  • Loading branch information
melton-jason committed Jan 10, 2025
1 parent 3f48248 commit 0c31f75
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions specifyweb/specify/tree_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,17 +346,17 @@ def move(request, tree: TREE_TABLE, id: int):
"type": "integer",
"description": "The ID of the storage tree node to which the preparations should be moved."
},
"required": ["target"],
"additionalProperties": False,
}
},
'required': ['target'],
'additionalProperties': False
}
},
},
"responses": {
"200": {
"description": "Success message indicating the bulk move operation was successful."
}
},
}
},
"responses": {
"200": {
"description": "Success message indicating the bulk move operation was successful."
}
}
}
})
Expand Down

0 comments on commit 0c31f75

Please sign in to comment.