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.
 
 
 
 
 

17 lines
348 B

class ApplicationController < ActionController::Base
# http_basic_authenticate_with name: "stupid", password: "studio"
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