Merge pull request #1111 from bookwyrm-social/rss-templates

Moves rss templates to base level directory
This commit is contained in:
Mouse Reeve 2021-05-20 16:40:41 -07:00 committed by GitHub
commit e74bb4e33c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 2 deletions

View file

@ -7,8 +7,8 @@ from .helpers import get_user_from_username, privacy_filter
class RssFeed(Feed):
"""serialize user's posts in rss feed"""
description_template = "snippets/rss_content.html"
title_template = "snippets/rss_title.html"
description_template = "rss/content.html"
title_template = "rss/title.html"
def get_object(self, request, username):
"""the user who's posts get serialized"""