Guest User

Untitled

a guest
Jul 17th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. def method_missing(method, *args, &block)
  2. User rescue nil
  3. if Object.const_defined?("User")
  4. User.find_by_login(method.to_s) || super
  5. else
  6. super
  7. end
  8. end
Add Comment
Please, Sign In to add comment