Last active
March 22, 2018 17:19
-
-
Save rachidcalazans/ae19374463db0a667291ca6ff4c8b645 to your computer and use it in GitHub Desktop.
Example II Avoiding Nil - Represent special cases as objects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ApplicationController ... | |
| ... | |
| def current_user | |
| return GuestUser.new unless session[:user_id] | |
| User.find(session[:user_id]) | |
| end | |
| ... | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment