Guest User

Untitled

a guest
May 27th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. def authorize
  2. unless admin?
  3. flash[:error] = "You are unauthorized."
  4. redirect_to homes_path
  5. false
  6. end
  7. end
  8.  
  9.  
  10. #homes_path should be variable based on which resource I'm currently viewing.
Add Comment
Please, Sign In to add comment