i'm using act votable voting on rails app , searchkick search. want searchkick's search results order vote score. need guys, please anybody? here have @ moment. , it's not working
def search if params[:search].present? @peegins = peegin.search(params[:search]).order(:cached_votes_score => :desc) else redirect_to peegins_path end
i figured out. problem bracket around search params. here's fix.
@peegins = peegin.search params[:search], order: { cached_votes_score: :desc}
Comments
Post a Comment