Class: CmsController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/cms_controller.rb

Direct Known Subclasses

PagesController, SearchesController

Instance Method Summary collapse

Instance Method Details

#set_locale(locale_code) ⇒ Object



8
9
10
# File 'app/controllers/cms_controller.rb', line 8

def set_locale(locale_code)
  I18n.locale = @available_locales.map(&:code).include?(locale_code.to_s.to_sym) ? locale_code : I18n.default_locale
end