Add author to iesg telechat minutes feed, to make it valid.
Add document comments feed to top-level urls. - Legacy-Id: 101
This commit is contained in:
parent
5fb1900540
commit
f9b9b51536
|
@ -7,6 +7,7 @@ class IESGMinutes(Feed):
|
|||
link = "/iesg/telechat/"
|
||||
subtitle = "Minutes from IESG Telechats."
|
||||
feed_type = Atom1Feed
|
||||
author_name = 'IESG Secretary'
|
||||
|
||||
def items(self):
|
||||
return TelechatMinutes.objects.order_by('-telechat_date')[:10]
|
||||
|
|
|
@ -1,10 +1,12 @@
|
|||
from django.conf.urls.defaults import *
|
||||
|
||||
from ietf.iesg.feeds import IESGMinutes
|
||||
from ietf.idtracker.feeds import DocumentComments
|
||||
import ietf.views
|
||||
|
||||
feeds = {
|
||||
'iesg_minutes': IESGMinutes,
|
||||
'comments': DocumentComments,
|
||||
}
|
||||
|
||||
urlpatterns = patterns('',
|
||||
|
|
Loading…
Reference in a new issue