mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Merge branch 'master' of github.com:samuelclay/NewsBlur
* 'master' of github.com:samuelclay/NewsBlur: Ordering unmoderated recommended feeds by date.
This commit is contained in:
commit
1b267a1cbc
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ class RecommendedFeed(models.Model):
|
|||
return "%s (%s)" % (self.feed, self.approved_date or self.created_date)
|
||||
|
||||
class Meta:
|
||||
ordering = ['-approved_date']
|
||||
ordering = ['-approved_date', '-created_date']
|
||||
|
||||
|
||||
class RecommendedFeedUserFeedback(models.Model):
|
||||
|
|
Loading…
Add table
Reference in a new issue