Skip to content

Instantly share code, notes, and snippets.

@joelbrewer
Created February 27, 2014 15:49
Show Gist options
  • Save joelbrewer/9252720 to your computer and use it in GitHub Desktop.
Save joelbrewer/9252720 to your computer and use it in GitHub Desktop.
def home
if signed_in?
if current_user.active_subscription?
load_signed_in_page
else
redirect_to plans_path
end
else
render 'signed_out_home'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment