Guest User

Untitled

a guest
Jul 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. Application controller:
  2.  
  3. def admin?
  4. if !@current_user && @current_user.admin == true
  5. return true
  6. end
  7. end
  8.  
  9.  
  10.  
  11. View:
  12.  
  13. - if admin?
  14. = link_to "Admin", "/"
Add Comment
Please, Sign In to add comment