Skip to content

Commit

Permalink
Fix schema for uploaded_by being None in show library contents endpoi…
Browse files Browse the repository at this point in the history
…nt caused in test_materialize_library_dataset
  • Loading branch information
arash77 committed Sep 27, 2024
1 parent 912ba9b commit 5bf8e41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13219,7 +13219,7 @@ export interface components {
/** Update Time */
update_time: string;
/** Uploaded By */
uploaded_by: string;
uploaded_by: string | null;
/** Uuid */
uuid: string;
} & {
Expand Down
2 changes: 1 addition & 1 deletion lib/galaxy/schema/library_contents.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ class LibraryContentsShowDatasetResponse(LibraryContentsShowResponse):
state: str
file_name: str
created_from_basename: Optional[str]
uploaded_by: str
uploaded_by: Optional[str]
message: Optional[str]
date_uploaded: str
file_size: int
Expand Down

0 comments on commit 5bf8e41

Please sign in to comment.