Skip to content

Commit

Permalink
Merge pull request #17629 from mvdbeek/fix_latested_uuid
Browse files Browse the repository at this point in the history
[24.0] Make latest_workflow_uuid optional
  • Loading branch information
mvdbeek authored Mar 7, 2024
2 parents bc78b6f + fb9aee0 commit a24779c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11005,10 +11005,9 @@ export interface components {
};
/**
* Latest workflow UUID
* Format: uuid4
* @description TODO
*/
latest_workflow_uuid: string;
latest_workflow_uuid?: string | null;
/**
* License
* @description SPDX Identifier of the license associated with this workflow.
Expand Down
4 changes: 2 additions & 2 deletions lib/galaxy/schema/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -2136,8 +2136,8 @@ class StoredWorkflowSummary(Model, WithModelClass):
title="Owner",
description="The name of the user who owns this workflow.",
)
latest_workflow_uuid: UUID4 = Field( # Is this really used?
...,
latest_workflow_uuid: Optional[UUID4] = Field(
None,
title="Latest workflow UUID",
description="TODO",
)
Expand Down

0 comments on commit a24779c

Please sign in to comment.