I have a project model which I''d like to set the default_scope to filter out projects where the user doesn''t have permission to view them. Think something along the lines of the projects having a list of teams and companies that the user must be in to access the data. default_scope seems to work well if I hard code it as I really don''t want a dev to accidentally not have these permissions filters in use. The lists of teams and companies a user is in is stored in the session. How can I marry these up? Thanks in advance. -- 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 unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/a465d7954011631c9cfeb3e30f9eb1bb%40ruby-forum.com?hl=en-US. For more options, visit https://groups.google.com/groups/opt_out.
I''ve tried following the pattern from the accepted answer here: http://stackoverflow.com/questions/10680845/owner-filteder-model-objects-on-rails-3 But I''m left with a problem in that I populate the session variables on User.after_database_connection (when I''d assumed, probably incorrect, that we first know who the user is) and the scope is called before then. -- 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 unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/8af994a5825d43688442d9c2ee989171%40ruby-forum.com?hl=en-US. For more options, visit https://groups.google.com/groups/opt_out.