views:

23

answers:

1

Is it available in the controller, because it's not working for me.

+2  A: 

Does your ApplicationController class contain the lines shown below?

class ApplicationController < ActionController::Base
  include AuthenticatedSystem
  helper :all
  ...
end
John Topley
thanks..that did it
Matt