-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RSS feed titles and descriptions are now not terrible. #3123
Conversation
src/rss/views.py
Outdated
def title(self, obj): | ||
return "{} Article Feed".format(obj.name) | ||
|
||
def description(self, obj): | ||
return "A feed of the 10 latest articles from {}".format(obj.name) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can obj
be None
? It seems that way from self.get_object
, in which case it would raise an AttributeError
here
jenkins: test this please |
Looks like this one is good to go! |
Waiting on Jenkins at the moment, there were a few tests still failing |
Ah, it showed passed to me! |
Shows as pending to me, but you are right, build has passed! 💚 |
No description provided.