|
Project
|
Ruby
|
|
Priority
|
Normal |
|
Type
|
Feature |
|
Fix versions
|
RubyMine after 4.0 |
|
State
|
Open |
|
Assignee
|
Roman Chernyatchik |
|
Subsystem
|
Inspections |
|
Affected versions
|
No Affected versions |
|
Fixed in build
|
No Fixed in build
|
class SampleController < ActionController::Base
before_filter :login_required
def index
end
protected
def login_required
# Check authentication stamp here...
end
end
class SampleController < ActionController::Base before_filter :login_required protected def login_required #Check authentication stamp here... end def index end endHere index isn't valid action method