Skip to content

Instantly share code, notes, and snippets.

@neaf
Created April 29, 2010 22:04
Show Gist options
  • Select an option

  • Save neaf/384335 to your computer and use it in GitHub Desktop.

Select an option

Save neaf/384335 to your computer and use it in GitHub Desktop.
module Padrino
module Admin
module Helpers
module AuthenticationHelpers
private
def login_from_session
Account.find(session[options.session_id]) if session[options.session_id]
end
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment