Merge pull request #319 from alxndr/rss-caching
Basic caching for topic/category RSS feeds
This commit is contained in:
commit
3cf3fee781
|
@ -51,14 +51,17 @@ class ListController < ApplicationController
|
|||
raise Discourse::InvalidParameters.new('Category RSS of "uncategorized"') if params[:category] == Slug.for(SiteSetting.uncategorized_name) || params[:category] == SiteSetting.uncategorized_name
|
||||
|
||||
@category = Category.where("slug = ?", params[:category]).includes(:featured_users).first
|
||||
|
||||
guardian.ensure_can_see!(@category)
|
||||
@topic_list = TopicQuery.new.list_new_in_category(@category)
|
||||
render 'list', formats: [:rss]
|
||||
|
||||
anonymous_etag(@category) do
|
||||
@topic_list = TopicQuery.new.list_new_in_category(@category)
|
||||
render 'list', formats: [:rss]
|
||||
end
|
||||
end
|
||||
|
||||
protected
|
||||
|
||||
|
||||
def respond(list)
|
||||
|
||||
list.draft_key = Draft::NEW_TOPIC
|
||||
|
|
|
@ -83,7 +83,6 @@ class TopicsController < ApplicationController
|
|||
toggle_mute(false)
|
||||
end
|
||||
|
||||
|
||||
def destroy
|
||||
topic = Topic.where(id: params[:id]).first
|
||||
guardian.ensure_can_delete!(topic)
|
||||
|
@ -143,7 +142,9 @@ class TopicsController < ApplicationController
|
|||
|
||||
def feed
|
||||
@topic_view = TopicView.new(params[:topic_id])
|
||||
render 'topics/show', formats: [:rss]
|
||||
anonymous_etag(@topic_view.topic) do
|
||||
render 'topics/show', formats: [:rss]
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
|
|
Loading…
Reference in New Issue