Sha256: 2f2d924141cc82dc5088077a480e12ed00cad7326eeb9ddc38fc1697bbc0e417
Contents?: true
Size: 474 Bytes
Versions: 14
Compression:
Stored size: 474 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 class Admin::ApplicationController < ApplicationController protect_from_forgery before_action :authorize layout 'lines/admin' end end
Version data entries
14 entries across 14 versions & 1 rubygems