Sha256: 4d35c3f162eb5a0fc60c40764e97df89a2b80e84d653c17370695c12efc97056
Contents?: true
Size: 1.15 KB
Versions: 16
Compression:
Stored size: 1.15 KB
Contents
module Spree module Admin class ImagesController < ResourceController before_action :load_product before_action :load_edit_data, except: :index create.before :set_viewable update.before :set_viewable private def location_after_destroy spree.admin_product_images_url(@product) end def location_after_save spree.admin_product_images_url(@product) end def load_edit_data @variants = @product.variants.map do |variant| [variant.sku_and_options_text, variant.id] end @variants.insert(0, [Spree.t(:all), @product.master_id]) end def set_viewable @image.viewable_type = 'Spree::Variant' @image.viewable_id = params[:image][:viewable_id] end def load_product @product = scope.friendly.find(params[:product_id]) end def scope current_store.products end def collection_url spree.admin_product_images_url end def model_class Spree::Image end def collection @collection ||= load_product.variant_images end end end end
Version data entries
16 entries across 16 versions & 1 rubygems