FEATURE: add RSS feed for top topics

This commit is contained in:
Arpit Jalan 2016-02-29 23:28:51 +05:30
parent ff31403a60
commit 01e1bb53f1
2 changed files with 14 additions and 0 deletions
app/controllers
config/locales

View file

@ -129,6 +129,18 @@ class ListController < ApplicationController
render 'list', formats: [:rss]
end
def top_feed
discourse_expires_in 1.minute
@title = "#{SiteSetting.title} - #{I18n.t("rss_description.top")}"
@link = "#{Discourse.base_url}/top"
@atom_link = "#{Discourse.base_url}/top.rss"
@description = I18n.t("rss_description.top")
@topic_list = TopicQuery.new(nil).list_top_for("monthly")
render 'list', formats: [:rss]
end
def category_feed
guardian.ensure_can_see!(@category)
discourse_expires_in 1.minute
@ -175,6 +187,7 @@ class ListController < ApplicationController
list.for_period = period
list.more_topics_url = construct_url_with(:next, top_options)
list.prev_topics_url = construct_url_with(:prev, top_options)
@rss = "top"
if use_crawler_layout?
@title = I18n.t("js.filters.top.#{period}.title")

View file

@ -201,6 +201,7 @@ en:
rss_description:
latest: "Latest topics"
hot: "Hot topics"
top: "Top topics"
posts: "Latest posts"
too_late_to_edit: "That post was created too long ago. It can no longer be edited or deleted."