Skip to content

Commit

Permalink
Annotate the history_id paramter
Browse files Browse the repository at this point in the history
  • Loading branch information
assuntad23 committed Aug 25, 2023
1 parent cee5ad6 commit 25fbac2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13072,7 +13072,7 @@ export interface operations {
header?: {
"run-as"?: string;
};
/** @description The ID of the History. */
/** @description History ID or any string. */
/** @description The ID of the item (`HDA`/`HDCA`) contained in the history. */
path: {
history_id: string;
Expand Down
2 changes: 1 addition & 1 deletion lib/galaxy/webapps/galaxy/api/history_contents.py
Original file line number Diff line number Diff line change
Expand Up @@ -874,7 +874,7 @@ def delete_legacy(
self,
response: Response,
trans: ProvidesHistoryContext = DependsOnTrans,
history_id: str = "",
history_id: str = Path(..., description="History ID or any string."),
id: DecodedDatabaseIdField = HistoryItemIDPathParam,
type: HistoryContentType = ContentTypeQueryParam(default=HistoryContentType.dataset),
serialization_params: SerializationParams = Depends(query_serialization_params),
Expand Down

0 comments on commit 25fbac2

Please sign in to comment.