Sha256: e5ab0e351d59c212e22d8340bcb9abccb734fb70747e9baa718ed3f3209d6093
Contents?: true
Size: 1.18 KB
Versions: 9
Compression:
Stored size: 1.18 KB
Contents
class ProductsController < ApplicationController before_action :set_product, only: [:show, :edit, :update, :destroy] include BetterFrameable # GET /products def index @products = Product.all end # GET /products/1 def show end # GET /products/new def new @product = Product.new end # GET /products/1/edit def edit end # POST /products def create @product = Product.new(product_params) if @product.save redirect_to @product, notice: 'Product was successfully created.' else render :new end end # PATCH/PUT /products/1 def update if @product.update(product_params) redirect_to @product, notice: 'Product was successfully updated.' else render :edit end end # DELETE /products/1 def destroy @product.destroy redirect_to products_url, notice: 'Product was successfully destroyed.' end private # Use callbacks to share common setup or constraints between actions. def set_product @product = Product.find(params[:id]) end # Only allow a trusted parameter "white list" through. def product_params params.require(:product).permit(:name, :price) end end
Version data entries
9 entries across 9 versions & 1 rubygems