2015-06-28 15:14:47 +00:00
|
|
|
class SeriesController < ApplicationController
|
|
|
|
|
|
|
|
def show
|
|
|
|
@serie = Serie.find(params[:id])
|
|
|
|
@title = @serie.name
|
|
|
|
end
|
|
|
|
|
|
|
|
def index
|
|
|
|
@series = Serie.paginate(page: params[:page])
|
|
|
|
@title = "Series"
|
2015-06-29 16:58:02 +00:00
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
format.js
|
|
|
|
end
|
2015-06-28 15:14:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|