Guest User

Untitled

a guest
Apr 16th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. before_save :login_is_valid?
  2.  
  3. private
  4.  
  5.  
  6.  
  7. def login_is_valid?
  8. if username == "Username"
  9. username = nil
  10. end
  11. if password == "Password"
  12. password = nil
  13. end
  14. end
Add Comment
Please, Sign In to add comment