Skip to content

Instantly share code, notes, and snippets.

@s2t2
Created May 27, 2017 02:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save s2t2/9a191ac4345284a45b262526b4d3a115 to your computer and use it in GitHub Desktop.
Save s2t2/9a191ac4345284a45b262526b4d3a115 to your computer and use it in GitHub Desktop.
rails scaffold controller
class FavsController < ApplicationController
before_action :set_fav, only: [:show, :edit, :update, :destroy]
# GET /favs
# GET /favs.json
def index
@favs = Fav.all
end
# GET /favs/1
# GET /favs/1.json
def show
end
# GET /favs/new
def new
@fav = Fav.new
end
# GET /favs/1/edit
def edit
end
# POST /favs
# POST /favs.json
def create
@fav = Fav.new(fav_params)
respond_to do |format|
if @fav.save
format.html { redirect_to @fav, notice: 'Fav was successfully created.' }
format.json { render :show, status: :created, location: @fav }
else
format.html { render :new }
format.json { render json: @fav.errors, status: :unprocessable_entity }
end
end
end
# PATCH/PUT /favs/1
# PATCH/PUT /favs/1.json
def update
respond_to do |format|
if @fav.update(fav_params)
format.html { redirect_to @fav, notice: 'Fav was successfully updated.' }
format.json { render :show, status: :ok, location: @fav }
else
format.html { render :edit }
format.json { render json: @fav.errors, status: :unprocessable_entity }
end
end
end
# DELETE /favs/1
# DELETE /favs/1.json
def destroy
@fav.destroy
respond_to do |format|
format.html { redirect_to favs_url, notice: 'Fav was successfully destroyed.' }
format.json { head :no_content }
end
end
private
# Use callbacks to share common setup or constraints between actions.
def set_fav
@fav = Fav.find(params[:id])
end
# Never trust parameters from the scary internet, only allow the white list through.
def fav_params
params.fetch(:fav, {})
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment