Guest User

Untitled

a guest
Jul 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. class User
  2. def self.serialize_from_cookie(cookie)
  3. if cookie.split("::").first.to_s.size != 16
  4. # Invalid Mongo ID, we have to return nil to expire the cookie
  5. nil
  6. else
  7. super
  8. end
  9. end
  10. end
Add Comment
Please, Sign In to add comment