17 lines
561 B
Ruby
17 lines
561 B
Ruby
# Filters added to this controller apply to all controllers in the application.
|
|
# Likewise, all the methods added will be available for all controllers.
|
|
|
|
class ApplicationController < ActionController::Base
|
|
before_filter :authenticate, :set_page
|
|
include Clearance::Authentication
|
|
#helper :all # include all helpers, all the time
|
|
protect_from_forgery # See ActionController::RequestForgeryProtection for details
|
|
# Scrub sensitive parameters from your log
|
|
# filter_parameter_logging :password
|
|
def set_page
|
|
@page_title = "Collab"
|
|
end
|
|
|
|
|
|
end
|