19 lines
336 B
Ruby
19 lines
336 B
Ruby
module Locomotive
|
|
module Public
|
|
class BaseController < ApplicationController
|
|
|
|
include Locomotive::Routing::SiteDispatcher
|
|
|
|
include Locomotive::ActionController::Helpers
|
|
|
|
before_filter :require_site
|
|
|
|
protected
|
|
|
|
def set_locale
|
|
logger.info "[public/set_locale] TODO"
|
|
end
|
|
|
|
end
|
|
end
|
|
end |