bruz/bookshelf-delivery-example

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

Summary

Maintainability
A
0 mins
Test Coverage
module Web::Views::Books
  class Edit
    include Web::View

    def form
      Form.new(:book, routes.book_path(book.id), { book: book },
               method: :patch)
    end

    def submit_label
      'Update'
    end
  end
end