Add order on topic index.

This commit is contained in:
taitus
2017-08-07 18:56:04 +02:00
parent 1dc3cd4bb3
commit a1d37fa6c4
3 changed files with 15 additions and 21 deletions

View File

@@ -1,6 +1,8 @@
class CommunitiesController < ApplicationController
before_action :set_community, :load_topics, only: :show
before_action :set_order, :set_community, :load_topics, only: :show
has_orders %w{newest most_commented oldest}, only: :show
skip_authorization_check
@@ -9,11 +11,15 @@ class CommunitiesController < ApplicationController
private
def set_order
@order = params[:order].present? ? params[:order] : "newest"
end
def set_community
@community = Community.find(params[:id])
end
def load_topics
@topics = @community.topics.page(params[:page])
@topics = @community.topics.send("sort_by_#{@order}").page(params[:page])
end
end