Created
October 18, 2012 07:56
-
-
Save abrongersma/3910345 to your computer and use it in GitHub Desktop.
User controller
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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