blob: fb45c80d67cdf58d4bf187320bd0d93327b923f0 (
plain) (
tree)
|
|
# frozen_string_literal: true
module ActiveJob
module Translation #:nodoc:
extend ActiveSupport::Concern
included do
around_perform do |job, block, _|
I18n.with_locale(job.locale, &block)
end
end
end
end
|