We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fb1900 commit f9b9b51Copy full SHA for f9b9b51
2 files changed
ietf/iesg/feeds.py
@@ -7,6 +7,7 @@ class IESGMinutes(Feed):
7
link = "/iesg/telechat/"
8
subtitle = "Minutes from IESG Telechats."
9
feed_type = Atom1Feed
10
+ author_name = 'IESG Secretary'
11
12
def items(self):
13
return TelechatMinutes.objects.order_by('-telechat_date')[:10]
ietf/urls.py
@@ -1,10 +1,12 @@
1
from django.conf.urls.defaults import *
2
3
from ietf.iesg.feeds import IESGMinutes
4
+from ietf.idtracker.feeds import DocumentComments
5
import ietf.views
6
feeds = {
'iesg_minutes': IESGMinutes,
+ 'comments': DocumentComments,
}
urlpatterns = patterns('',
0 commit comments