Unverified Commit 1fcde3a9 authored by Dannon's avatar Dannon Committed by GitHub
Browse files

Merge pull request #16593 from assuntad23/bug/16191/boxplot-render-fail

[23.0] Allow the legacy DELETE dataset endpoint to accept any string for the history_id
parents d1213243 2dc9f013
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -10979,7 +10979,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. */
            /**
             * @description The type of the target history element.
+1 −1
Original line number Diff line number Diff line
@@ -824,7 +824,7 @@ class FastAPIHistoryContents:
        self,
        response: Response,
        trans: ProvidesHistoryContext = DependsOnTrans,
        history_id: DecodedDatabaseIdField = HistoryIDPathParam,
        history_id: str = Path(..., description="History ID or any string."),
        id: DecodedDatabaseIdField = HistoryItemIDPathParam,
        type: HistoryContentType = ContentTypePathParam,
        serialization_params: SerializationParams = Depends(query_serialization_params),