bookstore/app/controllers/books_controller.rb

5 lines
136 B
Ruby

class BooksController < ApplicationController
def index
@books = Book.published.map { |book| BooksPresenter.new(book) }
end
end