Skip to content

Commit f9b9b51

Browse files
committed
Add author to iesg telechat minutes feed, to make it valid.
Add document comments feed to top-level urls. - Legacy-Id: 101
1 parent 5fb1900 commit f9b9b51

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

ietf/iesg/feeds.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ class IESGMinutes(Feed):
77
link = "/iesg/telechat/"
88
subtitle = "Minutes from IESG Telechats."
99
feed_type = Atom1Feed
10+
author_name = 'IESG Secretary'
1011

1112
def items(self):
1213
return TelechatMinutes.objects.order_by('-telechat_date')[:10]

ietf/urls.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
from django.conf.urls.defaults import *
22

33
from ietf.iesg.feeds import IESGMinutes
4+
from ietf.idtracker.feeds import DocumentComments
45
import ietf.views
56

67
feeds = {
78
'iesg_minutes': IESGMinutes,
9+
'comments': DocumentComments,
810
}
911

1012
urlpatterns = patterns('',

0 commit comments

Comments
 (0)