Sha256: 96c2267d56cf4f6f4576772f9d2ae5e423316604ffa754549f617bc3dff72846
Contents?: true
Size: 509 Bytes
Versions: 49
Compression:
Stored size: 509 Bytes
Contents
# Parent controller for the whole admin area. All controllers for the +Admin+ namespace # inherit from <tt>Admin::ApplicationController</tt> # # The +authorize+ before filter ensures that all inherited controllers and actions # require a logged in user. require_dependency "lines/application_controller" module Lines module Admin class ApplicationController < Lines::ApplicationController protect_from_forgery before_action :authorize layout 'lines/admin' end end end
Version data entries
49 entries across 49 versions & 2 rubygems