Guest User

Untitled

a guest
May 24th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. module Padrino
  2. module Admin
  3. module Helpers
  4. module AuthenticationHelpers
  5. private
  6. def login_from_session
  7. Account.find(session[options.session_id]) if session[options.session_id]
  8. end
  9. end
  10. end
  11. end
  12. end
Add Comment
Please, Sign In to add comment