Skip to content

Instantly share code, notes, and snippets.

@ElMassimo
Created April 3, 2017 10:49
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 ElMassimo/6775148c0d7364be111531a254b41ba9 to your computer and use it in GitHub Desktop.
Save ElMassimo/6775148c0d7364be111531a254b41ba9 to your computer and use it in GitHub Desktop.
Rails CRUD Controller using Draper
class BandController < ApplicationController
def new
@band = Band.new.decorate
end
def create
@band = Band.new(band_params)
if @band.save
redirect_to(@band)
else
@band = @band.decorate
render :new
end
end
def edit
@band = Band.find(params[:id]).decorate
end
def update
@band = Band.find(params[:id])
if @band.update_attributes(band_params)
redirect_to(@band)
else
@band = @band.decorate
render :edit
end
end
private
def band_params
params.require(:band).permit(:name)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment