1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-10-20 19:52:09 +00:00

Sort archive page by archived at

This commit is contained in:
Jeremy Benoist 2018-09-21 11:18:29 +02:00
parent 7c0d682687
commit 9007fe0062
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C
2 changed files with 1 additions and 3 deletions

View file

@ -50,7 +50,7 @@ class EntryRepository extends EntityRepository
public function getBuilderForArchiveByUser($userId)
{
return $this
->getSortedQueryBuilderByUser($userId)
->getSortedQueryBuilderByUser($userId, 'archivedAt', 'desc')
->andWhere('e.isArchived = true')
;
}