Skip to content

Instantly share code, notes, and snippets.

@paulfarino
Created February 12, 2016 06:14
Show Gist options
  • Save paulfarino/90d04c55597b7bb86d48 to your computer and use it in GitHub Desktop.
Save paulfarino/90d04c55597b7bb86d48 to your computer and use it in GitHub Desktop.
First time user experience for using the Devise Gem
def after_sign_in_path_for(resource)
if resource.sign_in_count == 1
first_time_user_experience_path
else
your_apps_main_path
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment