Matt Elhotiby
Matt Elhotiby

Reputation: 44066

restful authentication current_user

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

Upvotes: 1

Views: 122

Answers (1)

John Topley
John Topley

Reputation: 115372

Does your ApplicationController class contain the lines shown below?

class ApplicationController < ActionController::Base
  include AuthenticatedSystem
  helper :all
  ...
end

Upvotes: 2

Related Questions