Sha256: 3cd35730e9689fac163a8ccdc42e0d934a61bdb5a9b4eb2c8eb555efcd50c437

Contents?: true

Size: 1.05 KB

Versions: 62

Compression:

Stored size: 1.05 KB

Contents

module Workarea
  module Admin
    class RecommendationsController < Admin::ApplicationController
      required_permissions :catalog

      before_action :find_product
      before_action :find_settings

      def edit
      end

      def update
        @settings.sources = params[:sources].uniq if params[:sources].present?
        if @settings.update_attributes(params[:settings])
          flash[:success] = t('workarea.admin.recommendations.flash_messages.saved')
          redirect_to catalog_product_path(@product)
        else
          flash[:error] = t('workarea.admin.recommendations.flash_messages.changes_error')
          render :edit
        end
      end

      private

      def find_product
        model = Catalog::Product.find_by(slug: params[:catalog_product_id])
        @product = ProductViewModel.wrap(model, view_model_options)
      end

      def find_settings
        model = Recommendation::Settings.find_or_initialize_by(id: @product.id)
        @settings = RecommendationsViewModel.new(model, view_model_options)
      end
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-admin-3.5.27 app/controllers/workarea/admin/recommendations_controller.rb
workarea-admin-3.5.26 app/controllers/workarea/admin/recommendations_controller.rb
workarea-admin-3.4.45 app/controllers/workarea/admin/recommendations_controller.rb
workarea-admin-3.5.25 app/controllers/workarea/admin/recommendations_controller.rb
workarea-admin-3.5.23 app/controllers/workarea/admin/recommendations_controller.rb
workarea-admin-3.4.44 app/controllers/workarea/admin/recommendations_controller.rb
workarea-admin-3.5.22 app/controllers/workarea/admin/recommendations_controller.rb
workarea-admin-3.4.43 app/controllers/workarea/admin/recommendations_controller.rb
workarea-admin-3.5.21 app/controllers/workarea/admin/recommendations_controller.rb
workarea-admin-3.4.42 app/controllers/workarea/admin/recommendations_controller.rb
workarea-admin-3.5.20 app/controllers/workarea/admin/recommendations_controller.rb
workarea-admin-3.4.41 app/controllers/workarea/admin/recommendations_controller.rb
workarea-admin-3.5.19 app/controllers/workarea/admin/recommendations_controller.rb
workarea-admin-3.4.40 app/controllers/workarea/admin/recommendations_controller.rb
workarea-admin-3.5.18 app/controllers/workarea/admin/recommendations_controller.rb
workarea-admin-3.4.39 app/controllers/workarea/admin/recommendations_controller.rb
workarea-admin-3.5.17 app/controllers/workarea/admin/recommendations_controller.rb
workarea-admin-3.4.38 app/controllers/workarea/admin/recommendations_controller.rb
workarea-admin-3.5.16 app/controllers/workarea/admin/recommendations_controller.rb
workarea-admin-3.4.37 app/controllers/workarea/admin/recommendations_controller.rb