bouquins-ror/app/controllers/books_controller.rb

14 lines
205 B
Ruby
Raw Normal View History

2015-06-28 12:29:09 +00:00
class BooksController < ApplicationController
def show
@book = Book.find(params[:id])
2015-06-28 13:03:30 +00:00
@title = @book.title
end
def index
@books = Book.paginate(page: params[:page])
2015-06-28 13:03:30 +00:00
@title = "Books"
2015-06-28 12:29:09 +00:00
end
end