Guest User

Untitled

a guest
Apr 23rd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. def logged_in?
  2. if session[:user_id].nil?
  3. out = false
  4. else
  5. out = true
  6. end
  7. out
  8. end
Add Comment
Please, Sign In to add comment