From: Preethi Sivakumar Date: 2009-02-09T18:40:58+09:00 Subject: Not able to access session data in before_filter Hi, I've a session data that is generated when a user logs in. I'm trying to access that session data, in before_filter, in a different controller for passing parameter to the before_filter function. before_filter :only => [:index] do |obj| user = session[:user] has_permission_in_any(user.id,component_id,permission_id,user.communities) end But i'm not able to do that. What might be the reason? -- Posted via http://www.ruby-forum.com/.