Skip to content

Files

Latest commit

 

History

History
25 lines (17 loc) · 411 Bytes

Rails-ApplicationController.md

File metadata and controls

25 lines (17 loc) · 411 Bytes

Pattern: Missing use of ApplicationController

Issue: -

Description

Checks that controllers subclass ApplicationController.

Examples

# good
class CustomController < ApplicationController
  # ...
end

# bad
class CustomController < ActionController::Base
  # ...
end

Further Reading