Skip to content

Commit

Permalink
Fix visualization api type mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Nov 16, 2023
1 parent 3585aeb commit 4d92bda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/galaxy/webapps/galaxy/api/visualizations.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
from galaxy.managers.context import ProvidesUserContext
from galaxy.model.base import transaction
from galaxy.model.item_attrs import UsesAnnotations
from galaxy.schema.fields import DecodedDatabaseIdField
from galaxy.schema.fields import EncodedDatabaseIdField, DecodedDatabaseIdField
from galaxy.schema.schema import (
SetSlugPayload,
ShareWithPayload,
Expand Down Expand Up @@ -124,7 +124,7 @@ async def index(
deleted: bool = DeletedQueryParam,
limit: Optional[int] = LimitQueryParam,
offset: Optional[int] = OffsetQueryParam,
user_id: Optional[DecodedDatabaseIdField] = UserIdQueryParam,
user_id: Optional[EncodedDatabaseIdField] = UserIdQueryParam,
show_own: bool = ShowOwnQueryParam,
show_published: bool = ShowPublishedQueryParam,
show_shared: bool = ShowSharedQueryParam,
Expand Down

0 comments on commit 4d92bda

Please sign in to comment.