Some checks failed
CI / scan_ruby (push) Has been cancelled
CI / scan_js (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled
12 lines
387 B
Ruby
12 lines
387 B
Ruby
class ApplicationController < ActionController::Base
|
|
include Authentication
|
|
# Only allow modern browsers supporting webp images, web push, badges, import maps, CSS nesting, and CSS :has.
|
|
allow_browser versions: :modern
|
|
|
|
around_action :switch_locale
|
|
|
|
def switch_locale(&action)
|
|
locale = params[:locale] || I18n.default_locale
|
|
I18n.with_locale(locale, &action)
|
|
end
|
|
end
|