bouquins-ror/app/controllers/books_controller.rb

18 lines
265 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-29 16:58:02 +00:00
respond_to do |format|
format.html
format.js
end
2015-06-28 12:29:09 +00:00
end
end