Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
Promoted posts in Discussion don't get into the overall LW RSS feed #593
Comments
|
This is going to be tricky to do with Reddit's codebase. The way they do things is that every page is associated with some data, and if you add .rss to it, it gets rendered as XML (this trick also works with .json). So, anything that makes discussion posts show up in the main RSS feed will also make those posts show up on the main page. You might be able be able to make this work by making the front page use a different controller than the promoted page in main. For future reference, the code that looks up the list of links is in models/subreddit.py, various |
vaniver commentedNov 29, 2016
There are two acceptable ways to go about this, and it may require an investigation / rewrite of how the promotion mechanics work.
Options:
My guess is option 2 is easier.