Guest User

Untitled

a guest
Nov 16th, 2018
105
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 < ActiveRecord::Base
  2. # Inner classes FTW!
  3. class Null
  4. def name
  5. nil
  6. end
  7. end
  8.  
  9. # If you have a more meaningful class name then by all means!
  10. class Guest
  11. def name
  12. "Guest"
  13. end
  14. end
  15. end
Add Comment
Please, Sign In to add comment