Sha256: d6132498f18da9de8375452ef16ca6e2ae8fb6e0a4e744828bb3542f4a9779e7
Contents?: true
Size: 1.27 KB
Versions: 11
Compression:
Stored size: 1.27 KB
Contents
module Shoppe class VariantsController < ApplicationController before_filter { @active_nav = :products } before_filter { @product = Shoppe::Product.find(params[:product_id]) } before_filter { params[:id] && @variant = @product.variants.find(params[:id]) } def index @variants = @product.variants.ordered end def new @variant = @product.variants.build render :action => "form" end def create @variant = @product.variants.build(safe_params) if @variant.save redirect_to [@product, :variants], :notice => t('shoppe.variants.create_notice') else render :action => "form" end end def edit render :action => "form" end def update if @variant.update(safe_params) redirect_to edit_product_variant_path(@product, @variant), :notice => t('shoppe.variants.update_notice') else render :action => "form" end end def destroy @variant.destroy redirect_to [@product, :variants], :notice => t('shoppe.variants.destroy_notice') end private def safe_params params[:product].permit(:name, :permalink, :sku, :default_image_file, :price, :cost_price, :tax_rate_id, :weight, :stock_control, :active, :default) end end end
Version data entries
11 entries across 11 versions & 3 rubygems