You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 lines
277 B

class ApplicationController < ActionController::Base
private
def set_locale
I18n.locale = params[:locale].presence_in(I18n.available_locales.map(&:to_s)) || I18n.default_locale
end
def not_found
raise ActionController::RoutingError.new("Not Found")
end
end