displays relevance order in searches

This commit is contained in:
rgarcia
2015-11-23 11:12:35 +01:00
parent d19c84e940
commit 40ea3fcc58
7 changed files with 27 additions and 10 deletions

View File

@@ -4,9 +4,10 @@ class ProposalsController < ApplicationController
before_action :parse_search_terms, only: :index
before_action :parse_tag_filter, only: :index
before_action :set_search_order, only: :index
before_action :authenticate_user!, except: [:index, :show]
has_orders %w{hot_score confidence_score created_at most_commented random}, only: :index
has_orders %w{hot_score confidence_score created_at most_commented random relevance}, only: :index
has_orders %w{most_voted newest oldest}, only: :show
load_and_authorize_resource