aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Repository/EntryRepository.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-11-04 07:56:04 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-11-04 07:56:04 +0100
commit1e7b04d4eada9b1a9064cbd8c9bf2de63ae63e76 (patch)
tree896fe52d31f01e3a035e1c694b8dcd705b3b3960 /src/Wallabag/CoreBundle/Repository/EntryRepository.php
parent001cc7168aa1a7e9b8290b9c29566c586ac8b511 (diff)
downloadwallabag-1e7b04d4eada9b1a9064cbd8c9bf2de63ae63e76.tar.gz
wallabag-1e7b04d4eada9b1a9064cbd8c9bf2de63ae63e76.tar.zst
wallabag-1e7b04d4eada9b1a9064cbd8c9bf2de63ae63e76.zip
Use created_at as default sort
With index (following https://github.com/wallabag/wallabag/pull/2534)
Diffstat (limited to 'src/Wallabag/CoreBundle/Repository/EntryRepository.php')
-rw-r--r--src/Wallabag/CoreBundle/Repository/EntryRepository.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Repository/EntryRepository.php b/src/Wallabag/CoreBundle/Repository/EntryRepository.php
index 14616d88..61be5220 100644
--- a/src/Wallabag/CoreBundle/Repository/EntryRepository.php
+++ b/src/Wallabag/CoreBundle/Repository/EntryRepository.php
@@ -22,7 +22,7 @@ class EntryRepository extends EntityRepository
22 return $this->createQueryBuilder('e') 22 return $this->createQueryBuilder('e')
23 ->leftJoin('e.user', 'u') 23 ->leftJoin('e.user', 'u')
24 ->andWhere('u.id = :userId')->setParameter('userId', $userId) 24 ->andWhere('u.id = :userId')->setParameter('userId', $userId)
25 ->orderBy('e.id', 'desc') 25 ->orderBy('e.createdAt', 'desc')
26 ; 26 ;
27 } 27 }
28 28