Skip to content

Instantly share code, notes, and snippets.

@codyduval
Created January 20, 2014 20:01
Show Gist options
  • Select an option

  • Save codyduval/8527909 to your computer and use it in GitHub Desktop.

Select an option

Save codyduval/8527909 to your computer and use it in GitHub Desktop.
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