sausage-sandwich/ruby_sandwich

View on GitHub
apps/web/controllers/profile/recipes/recipe_ingredients/batch_edit.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Web
  module Controllers
    module Profile
      module Recipes
        module RecipeIngredients
          class BatchEdit
            include Web::Action
            include Web::Controllers::Profile::Authentication

            expose :recipe

            def call(params)
              @recipe = recipe_repo.find_with_ingredients_for_user(
                params[:recipe_id],
                current_user.id
              )
            end

            private

            def recipe_repo
              RecipeRepository.new
            end
          end
        end
      end
    end
  end
end