Sha256: 3d0a18cdfdadd25b0ead72ff8b418495dddb407227a9a67d0ebb193509c80b0c
Contents?: true
Size: 973 Bytes
Versions: 85
Compression:
Stored size: 973 Bytes
Contents
# frozen_string_literal: true module Spree module Admin class ImagesController < ResourceController before_action :load_data create.before :set_viewable update.before :set_viewable private def location_after_destroy admin_product_images_url(@product) end def location_after_save admin_product_images_url(@product) end def load_data @product = Spree::Product.friendly.find(params[:product_id]) @variants = @product.variants.collect do |variant| [variant.sku_and_options_text, variant.id] end @variants.insert(0, [t('spree.all'), @product.master.id]) rescue ActiveRecord::RecordNotFound resource_not_found(flash_class: Spree::Product, redirect_url: admin_products_path) end def set_viewable @image.viewable_type = 'Spree::Variant' @image.viewable_id = params[:image][:viewable_id] end end end end
Version data entries
85 entries across 85 versions & 1 rubygems