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 28, 2023
1 parent a6327a5 commit 7bdae4d
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 @@ -10621,7 +10621,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 @@ -824,7 +824,7 @@ def delete_typed(
self,
response: Response,
trans: ProvidesHistoryContext = DependsOnTrans,
history_id: str = "",
history_id: str = Path(..., description="History ID or any string."),
id: DecodedDatabaseIdField = HistoryItemIDPathParam,
type: HistoryContentType = ContentTypePathParam,
serialization_params: SerializationParams = Depends(query_serialization_params),
Expand Down

0 comments on commit 7bdae4d

Please sign in to comment.