bouquins-ror/app/controllers/books_controller.rb
2015-06-28 14:29:09 +02:00

8 lines
109 B
Ruby

class BooksController < ApplicationController
def show
@book = Calibre::Book.find(params[:id])
end
end