bookstore/app/controllers/books_controller.rb

6 lines
136 B
Ruby
Raw Normal View History

2021-03-19 17:31:38 +02:00
class BooksController < ApplicationController
def index
@books = Book.published.map { |book| BooksPresenter.new(book) }
end
end