Skip to content

Instantly share code, notes, and snippets.

@mynameispj
Created March 23, 2013 21:38
Show Gist options
  • Save mynameispj/5229459 to your computer and use it in GitHub Desktop.
Save mynameispj/5229459 to your computer and use it in GitHub Desktop.
In Rails, redirect a logged in user from the home page to another page
def home
if current_user.present?
redirect_to projects_url
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment