Skip to content

Instantly share code, notes, and snippets.

@abrongersma
Created October 18, 2012 07:56
Show Gist options
  • Save abrongersma/3910345 to your computer and use it in GitHub Desktop.
Save abrongersma/3910345 to your computer and use it in GitHub Desktop.
User controller
def create
@user = User.new(params[:user])
if @user.save
redirect_to new_photo_path #NEED TO FIX THIS AND CREATE EDIT METHODS
else
flash[:error] = "Error"
redirect_to new_user_path
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment