Skip to content

Instantly share code, notes, and snippets.

@akinsgre
Created March 6, 2012 01:50
Show Gist options
  • Save akinsgre/1982818 to your computer and use it in GitHub Desktop.
Save akinsgre/1982818 to your computer and use it in GitHub Desktop.
# check that user is logged in
def require_user
if current_user.nil?
session[:link_back] = request.url
redirect_to login_path
false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment