-
Notifications
You must be signed in to change notification settings - Fork 242
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
feat: per-user RSS feed #1232
feat: per-user RSS feed #1232
Conversation
posts/rss.py
Outdated
|
||
def items(self, user): | ||
res = Post.visible_objects()\ | ||
.filter(is_approved_by_moderator=True) |
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.
Кстати, не знаю, насколько это может быть ожидаемое поведение для тебя, но вот этот фильтр (is_approved_by_moderator) может быть причиной, почему ты какие-то посты каких-то людей в RSS не увидишь. Некоторые посты не аппрувятся, но и не реджектятся: например, мемопосты или что-то не совсем плохое, но и не совсем хорошее.
Просто пишу это, чтобы было ожидание, что посты в RSS пользователя могут не совпадать со списком постов пользователя на веб-странице.
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.
Тут я просто оставил как было. Не знаешь толком что это - не трогай :)
Спасибо, что рассказал!
frontend/html/users/profile.html
Outdated
@@ -10,6 +10,12 @@ | |||
{{ user.full_name }} — {{ block.super }} | |||
{% endblock %} | |||
|
|||
{% block rss %} |
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.
Тут надо не заменять контент родительского блока, а дописывать его
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.
@vas3k часть RSS клиентов не любят, когда несколько фидов прилинковано на страницу. Берут рандомный по мановению пятки левой ноги. Я бы предложил заменять. Могу поправить если настаиваешь.
Второй коммент поправил.
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.
Ну ладно, поверю. На моем опыте таких проблем не встречал
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.
Я с этим столкнулся, когда конвертер телеги в рсс делал. Там куча фидов на домашней странице.
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.
Во, ну намного же чище стало!
Добавляет RSS фид из постов клубчанина. См. #1231
Как тестил
docker exec -it club_app python3 manage.py import_posts_to_dev