bouquins-ror/app/controllers/books_controller.rb
2015-06-28 15:03:30 +02:00

14 lines
205 B
Ruby

class BooksController < ApplicationController
def show
@book = Book.find(params[:id])
@title = @book.title
end
def index
@books = Book.paginate(page: params[:page])
@title = "Books"
end
end