bouquins-ror/app/controllers/series_controller.rb
2015-08-04 19:32:38 +02:00

25 lines
444 B
Ruby

class SeriesController < ApplicationController
include PreferencesHelper
before_action :preferences, only: :index
def show
@serie = Serie.find(params[:id])
@title = @serie.name
end
def index
@series = Serie.where(query_filter(Serie.table_name))
.includes(books: :authors)
.references(:books)
.order(:sort)
.paginate(pagination)
@title = "Series"
respond_to do |format|
format.html
format.js
end
end
end