bouquins-ror/app/controllers/authors_controller.rb

14 lines
218 B
Ruby
Raw Normal View History

2015-06-28 15:14:47 +00:00
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