added scope for index

This commit is contained in:
Harry Bomrah 2016-04-11 19:23:48 +08:00
parent b4309349fa
commit b289050800
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
class PersonalJournalsController < ApplicationController
def index
params = OrbitHelper.params
journal_papers = JournalPaper.where(:is_hidden=>false).order_by(:year=>'desc').page(OrbitHelper.params[:page_no]).per(OrbitHelper.page_data_count)
journal_papers = JournalPaper.where(:is_hidden=>false).sort_for_frontend.page(OrbitHelper.params[:page_no]).per(OrbitHelper.page_data_count)
page = Page.where(:page_id => params[:page_id]).first rescue nil
if page.custom_string_field == "table"
fields_to_show = page.custom_array_field rescue []