bouquins-ror/app/controllers/authors_controller.rb
2015-06-28 17:14:47 +02:00

14 lines
218 B
Ruby

class AuthorsController < ApplicationController
def show
@author = Author.find(params[:id])
@title = @author.name
end
def index
@authors = Author.paginate(page: params[:page])
@title = "Authors"
end
end