|
|
|
Uh, I hope you got the idea from wrecked text sample above... I always thought JIRA is crap and counterintuitive
Michael it means that action method (method with associated view template) should be public.
class SampleController < ActionController::Base
before_filter :login_required
protected
def login_required
#Check authentication stamp here...
end
def index
end
end
Here index isn't valid action method |
|||||||||||||||||||||||||||||||||||||||||||
class SampleController < ActionController::Base
before_filter :login_required
def index
end
protected
def login_required
end
end