bruz/bookshelf-delivery-example

View on GitHub
apps/web/controllers/books/index.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Web::Controllers::Books
  class Index
    include Web::Action

    expose :books

    def call(_)
      @books = BookRepository.all
    end
  end
end