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