added scope for index

This commit is contained in:
Harry Bomrah 2016-04-11 19:26:05 +08:00
parent 5ab686b34e
commit 835dd7fc28
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
class PersonalHonorsController < ApplicationController
def index
params = OrbitHelper.params
honors = Honor.where(:is_hidden=>false).order_by(:year=>'desc').page(OrbitHelper.params[:page_no]).per(OrbitHelper.page_data_count)
honors = Honor.where(:is_hidden=>false).sort_for_frontend.page(OrbitHelper.params[:page_no]).per(OrbitHelper.page_data_count)
fields_to_show = Page.where(:page_id => params[:page_id]).first.custom_array_field rescue []
if fields_to_show.blank?