Guest User

Untitled

a guest
Jul 17th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. def authenticate
  2. unless current_user
  3. flash[:notice] = "You must be loged in first"
  4. redirect_to(login_url)
  5. return false
  6. end
  7. end
Add Comment
Please, Sign In to add comment