Hide hidden tags in the tags timeline

This commit is contained in:
Joseph Schorr 2015-04-19 18:12:06 -04:00
parent ed342ae831
commit 43ff6839b8

View file

@ -1767,6 +1767,7 @@ def list_repository_tag_history(repository, limit=100, specific_tag=None):
.select(RepositoryTag, Image)
.join(Image)
.where(RepositoryTag.repository == repository)
.where(RepositoryTag.hidden == False)
.order_by(RepositoryTag.lifetime_start_ts.desc())
.limit(limit))