Fix all the things!
This commit is contained in:
parent
399bf4e9c7
commit
25b8b7590f
4 changed files with 58 additions and 45 deletions
|
@ -22,7 +22,8 @@ def get_matching_tags(docker_image_id, storage_uuid, *args):
|
|||
.distinct()
|
||||
.join(Image)
|
||||
.join(ImageStorage)
|
||||
.where(Image.id << image_query, RepositoryTag.lifetime_end_ts >> None))
|
||||
.where(Image.id << image_query, RepositoryTag.lifetime_end_ts >> None,
|
||||
RepositoryTag.hidden == False))
|
||||
|
||||
|
||||
def list_repository_tags(namespace_name, repository_name, include_hidden=False,
|
||||
|
|
Reference in a new issue