Ruby on Rails Friday, September 2, 2011

My logic in the correct_user() before filter is: why should I have to
search the database for the user:

user = User.find(params[:id])


when I can just compare the id of the user in the session:

get_user_from_session.id.to_s

to the id in the url:

params[:id]

--
Posted via http://www.ruby-forum.com/.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

No comments:

Post a Comment