in apps/web/controllers/books/create.rb [13:22]
def call(params)
if params.valid?
BookRepository.new.create(params[:book])
redirect_to routes.books_path
else
self.status = 422
end
end