Displaying 1 result from an estimated 1 matches for "member_modules".
2006 Mar 27
3
Define methods for controllers, helper AND models?
Hi all
I know that I can define methods in e.g. the application controller and 
make them available to the helpers using helper_method(), but how can I 
make them available in the models?
I have for example the following method, that I want to be able to call 
from any model I wish...
def ApplicationController
  helper_method :member
  def member
    session[:member]
  end
end
Thanks for any