Guest User

Untitled

a guest
Jul 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. before_filter :check_ownership, :except => [:index, :show]
  2.  
  3. def check_ownership
  4. @book = Book.find(params[:id])
  5. if @book.user_id != current_user.id
  6. redirect_to(books_path, :notice=>"No es tuyo!")
  7. end
  8. end
Add Comment
Please, Sign In to add comment