2012-01-09 14:49:59 +00:00
|
|
|
module Locomotive
|
|
|
|
module Public
|
|
|
|
class BaseController < ApplicationController
|
|
|
|
|
|
|
|
include Locomotive::Routing::SiteDispatcher
|
2012-01-17 16:04:45 +00:00
|
|
|
include Locomotive::ActionController::LocaleHelpers
|
|
|
|
include Locomotive::ActionController::SectionHelpers
|
|
|
|
include Locomotive::ActionController::UrlHelpers
|
2012-01-09 14:49:59 +00:00
|
|
|
|
|
|
|
before_filter :require_site
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def set_locale
|
|
|
|
logger.info "[public/set_locale] TODO"
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|