Skip to content

Commit

Permalink
type accessible as literal False
Browse files Browse the repository at this point in the history
  • Loading branch information
martenson committed Mar 26, 2024
1 parent a06a881 commit dffedef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions client/src/api/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6004,9 +6004,9 @@ export interface components {
HDAInaccessible: {
/**
* Accessible
* @description Whether this item is accessible to the current user due to permissions.
* @constant
*/
accessible: boolean;
accessible: Record<string, never>;
/** Copied From Ldda Id */
copied_from_ldda_id?: string | null;
/**
Expand Down
2 changes: 1 addition & 1 deletion lib/galaxy/schema/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ class HDASummary(HDACommon):
class HDAInaccessible(HDACommon):
"""History Dataset Association information when the user can not access it."""

accessible: bool = AccessibleField
accessible: Literal[False]
state: DatasetStateField


Expand Down

0 comments on commit dffedef

Please sign in to comment.