Created
March 26, 2011 10:56
-
-
Save Znow/888199 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 signed_in? | |
| flash[:error] = "You cannot create a user while signed in" | |
| redirect_to @user | |
| else | |
| if @user.save | |
| sign_in @user | |
| flash[:success] = "Welcome to DanielG.dk!" | |
| redirect_to @user # Redirects to the new users show page | |
| else | |
| @title = "Sign Up" | |
| render 'new' | |
| end | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment