Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save exocode/a107fb8eac0ecc8f39b3 to your computer and use it in GitHub Desktop.

Select an option

Save exocode/a107fb8eac0ecc8f39b3 to your computer and use it in GitHub Desktop.
def redirect_back_or_default(default)
redirect_to(session[:return_to] || default)
session[:return_to] = nil
end
def redirect_referrer_or_default(default)
redirect_to(request.referrer || default)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment