Hide hidden tags in the tags timeline
This commit is contained in:
parent
ed342ae831
commit
43ff6839b8
1 changed files with 1 additions and 0 deletions
|
@ -1767,6 +1767,7 @@ def list_repository_tag_history(repository, limit=100, specific_tag=None):
|
||||||
.select(RepositoryTag, Image)
|
.select(RepositoryTag, Image)
|
||||||
.join(Image)
|
.join(Image)
|
||||||
.where(RepositoryTag.repository == repository)
|
.where(RepositoryTag.repository == repository)
|
||||||
|
.where(RepositoryTag.hidden == False)
|
||||||
.order_by(RepositoryTag.lifetime_start_ts.desc())
|
.order_by(RepositoryTag.lifetime_start_ts.desc())
|
||||||
.limit(limit))
|
.limit(limit))
|
||||||
|
|
||||||
|
|
Reference in a new issue