Less verbose notifications for QSS

Fixes #1914
This commit is contained in:
Joseph Schorr 2016-10-10 15:18:49 -04:00
parent 16303ee0a2
commit ebf4120326
4 changed files with 8 additions and 8 deletions

View file

@ -46,7 +46,8 @@ def filter_tags_have_repository_event(query, event):
.switch(RepositoryTag)
.join(Repository)
.join(RepositoryNotification)
.where(RepositoryNotification.event == event))
.where(RepositoryNotification.event == event)
.order_by(RepositoryTag.lifetime_start_ts.desc()))
def list_repository_tags(namespace_name, repository_name, include_hidden=False,
include_storage=False):