18 lines
236 B
Ruby
18 lines
236 B
Ruby
# frozen_string_literal: true
|
|
|
|
module I18n
|
|
class Middleware
|
|
|
|
def initialize(app)
|
|
@app = app
|
|
end
|
|
|
|
def call(env)
|
|
@app.call(env)
|
|
ensure
|
|
Thread.current[:i18n_config] = I18n::Config.new
|
|
end
|
|
|
|
end
|
|
end
|