bruz/bookshelf-delivery-example

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

Summary

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

    expose :book

    def call(params)
      @book = BookRepository.find(params[:id])
    end
  end
end