Created
January 20, 2014 20:01
-
-
Save codyduval/8527909 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
| 11 def introduction | |
| 12 @user = current_user | |
| 13 unless @user.taste_profile | |
| 14 @taste_profile = @user.build_taste_profile | |
| 15 render 'introduction.html.haml', :layout => 'numokha.html.haml' | |
| 16 @taste_profile.save | |
| 17 if session[:return_to] | |
| 18 redirect_to session[:return_to] | |
| 19 end | |
| 20 else | |
| 21 redirect_to '/members' | |
| 22 end | |
| 23 end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment