18 lines
271 B
Ruby
18 lines
271 B
Ruby
class SeriesController < ApplicationController
|
|
|
|
def show
|
|
@serie = Serie.find(params[:id])
|
|
@title = @serie.name
|
|
end
|
|
|
|
def index
|
|
@series = Serie.paginate(page: params[:page])
|
|
@title = "Series"
|
|
respond_to do |format|
|
|
format.html
|
|
format.js
|
|
end
|
|
end
|
|
|
|
end
|