Skip to content

Commit 855ea08

Browse files
committed
Include 30 items instead of 15 in IPR disclosure atom feed
- Legacy-Id: 1954
1 parent 7471e7e commit 855ea08

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/ipr/feeds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class LatestIprDisclosures(Feed):
1414
feed_url = "/feed/ipr/"
1515

1616
def items(self):
17-
return IprDetail.objects.filter(status__in=[1,3]).order_by('-submitted_date')[:15]
17+
return IprDetail.objects.filter(status__in=[1,3]).order_by('-submitted_date')[:30]
1818

1919
def item_pubdate(self, item):
2020
# this method needs to return a datetime instance, even

0 commit comments

Comments
 (0)