The code in question works, but Rails Best Practices docks me with a scope 
access warning.  The code in question is:

  def show
    # NOTE: rails_best practices recommends using scope access
    redirect_to(root_path) unless current_user == User.find(params[:id])
    @user = User.find(params[:id])
  end

How can I get this code to comply with the scope access standard?

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rubyonrails-talk/98301ec8-a9b0-4bda-982a-34417a67e173%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to