Guest User

Untitled

a guest
Jun 24th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. def fill_profile
  2. @user = current_user
  3. if @user.update_attributes(params[:user])
  4. flash[:notice] = "Account updated!"
  5. redirect_to :action => "home"
  6. else
  7. render :action => :fill_profile
  8. flash[:notice] = "Fill all required fields!"
  9. end
  10. end
Add Comment
Please, Sign In to add comment