Guest User

Untitled

a guest
Feb 21st, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. def create
  2. @make = Make.new(params[:make])
  3. if @make.save
  4. flash[:notice] = "Successfully created make."
  5. redirect_to @make
  6. else
  7. render :action => 'new'
  8. end
  9. end
Add Comment
Please, Sign In to add comment